-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
124 lines (120 loc) · 2.7 KB
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
const colors = require("tailwindcss/colors");
module.exports = {
purge: ["./src/**/*.{js,jsx,ts,tsx}", "./public/index.html"],
darkMode: false, // or 'media' or 'class'
mode: "jit",
theme: {
colors: {
rose: colors.rose,
fuchsia: colors.fuchsia,
indigo: colors.indigo,
slate: colors.slate,
white: colors.white,
black: colors.black,
blue: colors.blue,
green: colors.green,
red: colors.red,
pink: colors.pink,
},
extend: {
fontFamily: {
lato: ["lato", "sans-serif"],
sans: [
"lato",
"BlinkMacSystemFont",
"-apple-system",
"Segoe UI",
"Roboto",
"Oxygen",
"Ubuntu",
"Cantarell",
"Fira Sans",
"Droid Sans",
"Helvetica Neue",
"Helvetica",
"Arial",
"sans-serif",
],
mono: ["Source Code Pro", "Menlo", "monospace"],
},
colors: {
gray: {
50: "#555555",
100: "#FFFFFF",
150: "#3f4046",
200: "#EFEFEF",
250: "#3F4346",
300: "#DADADA",
350: "#344154",
400: "#818181",
450: "#455A64",
500: "#6F767E",
600: "#404B53",
650: "#202427",
700: "#232830", //"#26282C", //"#2B3034",
750: "#1A1C22",
800: "#050A0E",
850: "#26282C",
900: "#95959E",
},
orange: {
250: "#FF5810",
350: "#FF5D5D",
},
yellow: {
150: "#FF900C",
},
purple: {
350: "#5568FE",
550: "#596BFF",
600: "#586FEA",
650: "#2B3480",
700: "#4F63D2",
750: "#6246FB",
300: "#4658BB",
},
red: {
150: "#D32F2F",
250: "#FF6262",
650: "#FF5D5D"
},
pink: {
150: "#EC4899",
250: "#FFB5B5",
750: "#2c1a22",
},
green: {
150: "#3BA55D",
250: "#40A954",
350: "#34A85333",
450: "#34A85380",
550: "#87E5A2",
650: "#96F3D24D",
750: "#A3FEE3",
},
blue: {
350: "#76d9e6",
},
customGray: {
100: "#252A34",
150: "#31353B",
200: "#1E1E1E",
250: "#B4B4B4",
300: "#454545",
350: "#2B303499",
400: "#282828",
500: "#848484",
600: "#C4C4C4",
700: "#272727",
800: "#343434",
850: "#9E9DA6",
900: "#373C43",
},
},
},
},
variants: {
extend: {},
},
plugins: [],
};