-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
74 lines (73 loc) · 2.15 KB
/
Copy pathtailwind.config.js
File metadata and controls
74 lines (73 loc) · 2.15 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/** @type {import('tailwindcss').Config} */
export default {
content: [],
darkMode: 'class',
theme: {
screens: {
xs: "376px",
sm: "500px",
md: "768px",
lg: "1024px",
xl: "1280px",
},
letterSpacing: {
tightest: "-0.5em"
},
extend: {
colors: {
primary: "#0c0a09",
darkPrimary: "#f8f8f8",
dim: {
50: "#fafaf9",
100: "#f5f5f4",
200: "#e7e5e4",
300: "#d6d3d1",
400: "#a8a29e",
500: "#78716c",
600: "#57534e",
700: "#44403c",
800: "#292524",
900: "#1c1917",
950: "#0c0a09",
},
},
fontFamily: {
sans: ['Karla', 'Arial', 'Helvetica', 'sans-serif', 'Georgia', 'serif'],
raj: ['Rajdhani', 'Arial', 'Helvetica', 'sans-serif', 'Georgia', 'serif'],
roboto: ['Roboto', 'Arial', 'Helvetica', 'sans-serif', 'Georgia', 'serif'],
},
transitionProperty: {
main: 'all 150ms ease-out'
},
animation: {
glow: 'glow 1s ease-in-out infinite alternate',
disco: 'disco 2s ease-in-out infinite',
blink: 'blink 4.2s infinite'
},
keyframes: {
glow: {
'0%': { 'text-shadow': '0 0 2px #fff, 0 0 4px #fff, 0 0 6px #415ce3, 0 0 8px #415ce3, 0 0 10px #415ce3, 0 0 12px #415ce3, 0 0 14px #415ce3' },
'100%': { 'text-shadow': '0 0 6px #fff, 0 0 8px #4de6ff, 0 0 10px #4de6ff, 0 0 12px #4de6ff, 0 0 14px #4de6ff, 0 0 16px #4de6ff, 0 0 18px #4de6ff' },
},
disco: {
'20%, 24%, 55%': {
color: '#111',
'text-shadow': 'none'
},
'0%, 19%, 21%, 23%, 25%, 54%, 56%, 100%': {
color: '#fff6a9',
'text-shadow': '0 0 5px #ffa500, 0 0 9px #ffa500, 0 0 17px #ffa500, 0 0 1px #ffa500, 0 0 6px #ff0000, 0 0 10px #ff8d00, 0 0 11px #ff0000'
}
},
blink: {
'0%': {color: 'inherit'},
'49%': {color: 'inherit'},
'60%': {color: 'transparent'},
'85%': {color: 'inherit'},
'100%': {color: 'inherit'}
}
}
},
},
plugins: [],
}