-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
94 lines (93 loc) · 2.89 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
/** @type {import('tailwindcss').Config} */
/*eslint-env node*/
module.exports = {
content: [
"./index.html",
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
lapis: {
100: "#cde0e8",
200: "#9bc2d1",
300: "#69a3bb",
400: "#3785a4",
500: "#05668d",
600: "#045271",
700: "#033d55",
800: "#022938",
900: "#01141c"
},
teal: {
100: "#cce6e9",
200: "#9acdd3",
300: "#67b4bc",
400: "#359ba6",
500: "#028290",
600: "#026873",
700: "#014e56",
800: "#01343a",
900: "#001a1d"
},
persian: {
100: "#cceee1",
200: "#99dcc3",
300: "#66cba5",
400: "#33b987",
500: "#00a869",
600: "#008654",
700: "#00653f",
800: "#00432a",
900: "#002215"
},
thistle: {
100: "#f6f5fa",
200: "#eeeaf5",
300: "#e5e0ef",
400: "#ddd5ea",
500: "#d4cbe5",
600: "#aaa2b7",
700: "#7f7a89",
800: "#55515c",
900: "#2a292e"
},
classroom: {
50: "#2A9393",
100: "#2E8989",
200: "#307979",
300: "#2F6A6A",
400: "#2E5C5C",
500: "#2B4F4F",
600: "#284343",
700: "#243838",
800: "#1F2D2D",
900: "#1A2323",
950: "#171D1D"
},
gray: {
100: "#d7dadc",
200: "#afb5b9",
300: "#868f95",
400: "#5e6a72",
500: "#36454f",
600: "#2b373f",
650: "#263037",
700: "#20292f",
750: '#1d252a',
800: "#161c20",
850: "#111518",
900: "#0b0e10"
},
'dark': "rgb(0,0,0,0.2)",
'black': '#040403',
},
fontFamily: {
sans: '"Lato", sans-serif',
serif: '"DM Serif Display", sans-serif',
highlight: 'Montserrat, sans-serif',
}
},
},
plugins: [require("@tailwindcss/forms")],
}