-
Notifications
You must be signed in to change notification settings - Fork 5
/
tailwind.config.js
57 lines (57 loc) · 1.71 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
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
fontFamily: {
sans: ["Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue"],
sevenSegment: ["Seven Segment", "monospace"],
dotMatrix: ["Dot Matrix", "monospace"]
},
fontSize: {
"sm": "0.8rem",
"base": "1rem",
"xl": "1.25rem",
"2xl": "1.563rem",
"3xl": "1.953rem",
"4xl": "2.441rem",
"5xl": "3.052rem",
},
translate: {
'5/4': '125%',
},
animation: {
'blink': 'blink 1000ms linear infinite',
},
keyframes: {
'blink': {
'0%': { backgroundColor: 'transparent' },
'50%': {
backgroundColor: 'hsl(var(--af, var(--a)) / var(--tw-bg-opacity))',
color: 'hsl(var(--ac) / var(--tw-text-opacity))',
borderColor: 'hsl(var(--af, var(--a)) / var(--tw-border-opacity))'
},
'100%': { backgroundColor: 'transparent' }
}
}
},
},
daisyui:{
themes: [
{
nts: {
"primary": "#f3cc62",
"secondary": "#b4b4b4",
"accent": "#d32029",
"neutral": "#212121",
"base-100": "#434343",
"--rounded-btn": "0.25rem"
}
}
]
},
plugins: [
require("daisyui")
]
}