forked from Bloom4242/Frontend-1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
51 lines (51 loc) · 1.38 KB
/
tailwind.config.js
File metadata and controls
51 lines (51 loc) · 1.38 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
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx}",
"./src/components/**/*.{js,ts,jsx,tsx}",
"./src/utils/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
height: {
"90vh": "90vh",
"30vh": "30vh",
},
colors: {
polar: {
100: "#2E3440",
200: "#3B4252",
300: "#434C5E",
400: "#4C566A",
500: "#4A5568",
},
snow: {
100: "#D8DEE9",
200: "#E5E9F0",
300: "#ECEFF4",
},
frost: {
100: "#8FBCBB",
200: "#88C0D0",
300: "#81A1C1",
400: "#5E81AC",
},
aurora: {
red: {
100: "#c57179",
200: "#BF616A",
300: "#ac575f",
400: "#994e55",
},
orange: "#D08770",
yellow: "#EBCB8B",
green: "#A3BE8C",
pink: "#B48EAD",
},
},
},
},
plugins: [require("daisyui")],
daisyui: {
styled: false,
},
};