-
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.63 KB
/
tailwind.config.js
File metadata and controls
58 lines (58 loc) · 1.63 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
/** @type {import('tailwindcss').Config} */
// eslint-disable-next-line no-undef
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}'
],
important: '#root',
theme: {
extend: {
colors: {
'dev-gray': '#191919'
},
textColor: {
skin: {
base: 'var(--color-text-base)',
muted: 'var(--color-text-muted)',
hover: 'var(--color-text-hover)',
inverted: 'var(--color-background)',
skeleton: 'var(--color-skeleton-foreground)'
}
},
backgroundColor: {
skin: {
fill: 'var(--color-background)',
secundary: 'var(--color-secundary)',
'base-foreground': 'var(--color-text-base)',
'button-blue-accent': 'var(--color-button-accent-blue)',
'button-blue-accent-hover': 'var(--color-button-accent-blue-hover)',
'button-red-accent': 'var(--color-button-accent-red)',
'button-red-accent-hover': 'var(--color-button-accent-red-hover0',
'skeleton-foreground': 'var(--color-skeleton-foreground)'
}
},
fill: {
skin: {
muted: 'var(--color-text-muted)'
}
},
borderColor: {
skin: {
muted: 'var(--color-text-muted)'
}
}
},
keyframes: {
shimmerX: {
'100%': { transform: 'translateX(100%)' }
},
shimmerY: {
'100%': { transform: 'translateY(100%)' }
}
}
},
// eslint-disable-next-line no-undef
plugins: [require('tailwind-scrollbar-hide')]
}