-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
56 lines (54 loc) · 988 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
56 lines (54 loc) · 988 Bytes
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
module.exports = {
mode: 'jit',
purge: ['./public/**/*.html', './src/**/*.{astro,js,jsx,svelte,ts,tsx,vue}'],
theme: {
extend: {
gridTemplateColumns: {
"ketto": '1fr 1fr',
"harom": '2fr 1fr 1fr'
},
gridTemplateRows: {
"ketto": '1fr 1fr',
"harom": '50% 1fr 1fr'
},
colors: {
zold: {
"base": "#62c6b2",
"base-d": "#3D9382",
"base-dd": "#368676",
},
teal: {
800: "#00695c",
900: "#004d40",
"accent-100": "#a7ffeb",
"accent-200": "#64ffda",
"accent-400": "#1de9b6",
"accent-700": "#00bfa5",
},
gray: {
50: "#fafafa",
100: "#f5f5f5",
200: "#eeeeee",
300: "#e0e0e0",
400: "#bdbdbd",
500: "#9e9e9e",
600: "#757575",
700: "#616161",
800: "#424242",
900: "#212121",
},
szurke: {
"logo": "#3e3e3e",
}
},
fontSize: {
'2xs': '.5rem',
'3xs': '.35rem'
},
},
},
variants: {
extend: {},
},
plugins: [],
}