-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
52 lines (47 loc) · 1.19 KB
/
tailwind.config.ts
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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/**/*.{js,ts,jsx,tsx,mdx}",
"./modules/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
colors: {
// Grayscale
White: "#FFFFFF",
Gray1: "#F2F2F2",
Gray2: "#EDEDED",
Gray3: "#CCCCCC",
Gray4: "#AEAEAE",
Gray5: "#7C7C7C",
Gray6: "#4F4F4F",
Gray7: "#2D2D2D",
Black: "#000000",
// Active
Grapefruit1: "#D22632",
Grapefruit2: "#D83C2C",
Grapefruit3: "#DE5625",
Grapefruit4: "#E4701F",
Grapefruit5: "#EA8918",
Grapefruit6: "#F0A212",
Grapefruit7: "#F6BB0B",
// Gage
Approve: "#EC701F",
PartTime: "#EC701F",
Manager: "#DA2632",
ETC: "#2D2D2D",
// Error
Red: "#CA043A",
// Dialog rgba(0, 0, 0, 0.6);
Dialog: "rgba(0, 0, 0, 0.6)",
},
},
},
plugins: [],
};
export default config;