-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
53 lines (52 loc) · 1.45 KB
/
tailwind.config.ts
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
import { type Config } from 'tailwindcss'
export default {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
theme: {
fontFamily: {
roboto: 'Roboto',
kalam: 'Kalam',
},
extend: {
colors: {
darkThemeText: '#fafafa',
lightThemeText: '#09090B',
darkThemeBorder: '#3f3f46',
lightThemeBorder: '#e4e4e7',
lightThemeBG: '#fafafa',
darkThemeBG: '#27272A',
lightThemeDarkerBG: '#f4f4f5',
darkThemeDarkerBG: '#18181b',
lightThemeSecondaryBG: '#ffffff',
darkThemeSecondaryBG: '#3f3f46',
lightThemeSelected: 'rgb(147 197 253 / 0.5)', // #93c5fd/0.5
darkThemeSelected: 'rgb(59 130 246 / 0.5)', // #3b82f6/0.25
lightThemeHover: 'rgb(212 212 216 / 0.25)', // #d4d4d8/0.25
darkThemeHover: 'rgb(82 82 91 / 0.5)', // #a1a1aa/0.1
accent: '#2563EB', // #2563EB
},
animation: {
fadeIn: 'fadeInKeyframes 150ms forwards ease-out',
fadeOut: 'fadeOutKeyframes 150ms forwards ease-out',
},
keyframes: {
fadeOutKeyframes: {
from: {
opacity: '1',
},
to: {
opacity: '0',
},
},
fadeInKeyframes: {
from: {
opacity: '0',
},
to: {
opacity: '1',
},
},
},
},
},
plugins: [require('tailwindcss-3d'), require('tailwind-scrollbar-hide')],
} satisfies Config