-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
65 lines (64 loc) · 1.46 KB
/
tailwind.config.js
File metadata and controls
65 lines (64 loc) · 1.46 KB
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}"
],
theme: {
extend: {
colors: {
'jess': {
"100": "#E1F4EC",
"200": "#B3E4D1",
"300": "#80D2B4",
"400": "#4CCF97",
"DEFAULT": "#20B486",
"600": "#1A946D",
"700": "#137653",
"800": "#0C573A",
"900": "#063924"
},
'charter-blue': {
"100": "#E0E6EF",
"200": "#BCC9DD",
"300": "#99ABCC",
"400": "#7F90B7",
"DEFAULT": "#536E96",
"600": "#4A6387",
"700": "#3F5574",
"800": "#364962",
"900": "#29374A"
},
'red': {
"100": "#FDE4E4",
"200": "#FBB8B8",
"300": "#F88D8D",
"400": "#F46868",
"DEFAULT": "#F03737",
"600": "#D83232",
"700": "#B82C2C",
"800": "#972626",
"900": "#701D1D"
},
'green': {
"100": "#E6F9E6",
"200": "#C1F0C1",
"300": "#99E699",
"400": "#73DB73",
"DEFAULT": "#4CD24C",
"600": "#43BD43",
"700": "#389F38",
"800": "#2D802D",
"900": "#206020"
}
}
}
},
// eslint-disable-next-line no-undef
plugins: [require("daisyui"), require("@tailwindcss/typography")],
daisyui: {
themes: [
"nord"
]
}
}