-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
58 lines (58 loc) · 1.29 KB
/
tailwind.config.js
File metadata and controls
58 lines (58 loc) · 1.29 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
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./stader-ui-lib/**/*.{js,ts,jsx,tsx}",
],
// darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
primary: {
DEFAULT: "#CE41BD",
// "gradient-one": "#F04ADC",
// "gradient-two": "rgba(240, 74, 220, .7)",
},
secondary: {
DEFAULT: "#43b8d2",
},
dark: {
50: "#1d1d1d",
100: "#1E1E1E",
200: "#2E2E2E",
DEFAULT: "#010101",
500: "#0A0A0A",
600: "#111111",
},
light: {
100: "#3E3E3E",
800: "#8c8c8c",
900: "#f9f9f9",
},
},
borderRadius: {
10: "0.625rem",
},
boxShadow: {
"block-button": "2px 2px 8px rgba(1, 1, 1, 0.4)",
"text-field": "1.5px 1.5px 3px rgba(30, 30, 30, 0.75)",
box: "3px 3px 12px #010101",
},
fontSize: {
h1: "2rem",
h2: "1.5rem",
h3: "1.125rem",
body1: "1rem",
body2: "0.875rem",
body3: "0.75rem",
caption1: "0.688rem",
caption2: "0.625rem",
},
},
},
variants: {
extend: {},
},
plugins: [],
important: true,
};