-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
55 lines (55 loc) · 1.15 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
/* eslint-disable no-undef */
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
"light-green": "#EFFFE1",
"light-red": "#FFF4F4",
green: {
0: "#11240E",
1: "#55b648",
2: "#aadba3",
3: "#ddf0da",
4: "#f6fbf6",
base: "#4EA507"
},
"dark-green": {
0: "#041401",
1: "#136207",
2: "#89b083",
3: "#d0e0cd",
4: "#f3f7f3"
},
yellow: {
0: "#323007",
1: "#fcee21",
2: "#fdf790",
3: "#fefcd3",
4: "#fffef4"
},
grey: {
0: "#04242D",
dark: {
1: "#021C2F",
2: "#354959",
3: "#808D97",
4: "#F2F4F5"
}
},
semantics: {
error: "#dd2418",
amber: "#df9900",
success: "#24c790"
},
"portal-bg": "#f8f9fa",
"input-filled": "#dadcdd"
},
},
},
plugins: [require("@tailwindcss/forms")],
}