-
-
Notifications
You must be signed in to change notification settings - Fork 150
/
tailwind.config.js
78 lines (77 loc) · 1.77 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx,svelte}",
],
theme: {
extend: {
colors:{
bgcolor: "var(--risu-theme-bgcolor)",
darkbg: "var(--risu-theme-darkbg)",
borderc: "var(--risu-theme-borderc)",
selected: "var(--risu-theme-selected)",
draculared: "var(--risu-theme-draculared)",
textcolor: "var(--risu-theme-textcolor)",
textcolor2: "var(--risu-theme-textcolor2)",
darkborderc: "var(--risu-theme-darkborderc)",
darkbutton: "var(--risu-theme-darkbutton)",
},
minWidth: {
'2': '0.5rem',
'8': '2rem',
'12': '3rem',
'20': '5rem',
'14': '3.5rem',
'half': '50%',
'5': '1.25rem',
'6': '1.5rem',
'96': '24rem',
'110': '28rem',
'124': '32rem',
'138': '36rem',
},
maxWidth:{
'half': '50%',
'80p': '80%',
'80vw': '80vw',
'14': '3.5rem',
'24': '6rem',
'36': '9rem',
'100vw': '100vw'
},
borderWidth: {
'1': '1px',
},
width: {
'2xl': '48rem',
'3xl': '72rem',
'110': '28rem',
'124': '32rem',
'138': '36rem',
},
minHeight:{
'2': '0.5rem',
'8': '2rem',
'5': '1.25rem',
'14': '3.5rem',
'20': '5rem',
'32': '9rem',
'4': "0.75rem",
'96': '24rem',
'110': '28rem',
'124': '32rem',
'138': '36rem',
},
height:{
'96': '24rem',
'110': '28rem',
'124': '32rem',
'138': '36rem',
}
}
},
plugins: [
require('@tailwindcss/typography')
],
}