-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
107 lines (105 loc) · 2.42 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
const windmill = require("@windmill/react-ui/config");
const colors = require("tailwindcss/colors");
module.exports = windmill({
mode: "jit",
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./src/**/*.{js,ts,jsx,tsx}"],
darkMode: false, // or 'media' or 'class'
mode: "jit",
theme: {
colors: {
rose: colors.rose,
fuchsia: colors.fuchsia,
indigo: colors.indigo,
slate: colors.slate,
},
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: {
100: "#FFFFFF",
200: "#EFEFEF",
300: "#DADADA",
400: "#818181",
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" },
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",
300: "#454545",
400: "#282828",
500: "#848484",
600: "#C4C4C4",
700: "#272727",
800: "#343434",
850: "#9E9DA6",
900: "#373C43",
},
},
},
},
variants: {
extend: {},
},
plugins: [require("@tailwindcss/typography")],
});