-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
36 lines (36 loc) · 990 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
36 lines (36 loc) · 990 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
chakra: ['"Chakra Petch"', 'sans-serif'],
},
colors: {
theme: {
sidebar: 'var(--bg-theme-sidebar, #2B2D31)',
panel: 'var(--bg-theme-panel, #313338)',
main: 'var(--bg-theme-main, #1E1F22)',
primary: 'var(--text-theme-primary, #F2F3F5)',
muted: 'var(--text-theme-muted, #949BA4)',
border: 'var(--border-theme-border, #3F4147)',
hover: 'var(--bg-theme-hover, #3F4147)',
}
},
keyframes: {
'fade-in': {
'0%': { opacity: '0', transform: 'translate(-50%, 8px)' },
'100%': { opacity: '1', transform: 'translate(-50%, 0)' },
},
},
animation: {
'fade-in': 'fade-in 0.2s ease-out forwards',
},
},
},
plugins: [],
}