-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.ts
94 lines (92 loc) · 2.61 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
import type { Config } from 'tailwindcss'
import * as defaultTheme from 'tailwindcss/defaultTheme'
const config: Config = {
important: true,
darkMode: 'class',
content: ['./src/**/*.{js,ts,jsx,tsx,mdx}'],
theme: {
filter: {
name: 'brightness',
88: '88%',
},
screens: {
...defaultTheme.screens,
'max-tablet': { max: '640px' },
'max-laptop': { max: '1024px' },
'max-desktop': { max: '1280px' },
},
colors: {
dark: {
light: '#292929',
med: '#1e1e1e',
dark: '#121212',
ultradark: '#000000',
graytext: 'rgba(255, 255, 255, 0.87)',
graybutton: 'rgba(255, 255, 255, 0.1)',
radargrid: 'rgba(255, 255, 255, 0.2)',
panel: '#292929',
yellow: '#F4C042',
violet: '#D264EC',
green: '#3bb78f',
red: '#bf1d67',
blue: '#52B9FF',
},
light: {
light: '#F9F9F9',
med: '#F3F3F3',
dark: '#E0E0E0',
ultrawhite: '#FFFFFF',
graytext: 'rgba(0, 0, 0, 0.87)',
graybutton: 'rgba(0, 0, 0, 0.1)',
radargrid: 'rgba(0, 0, 0, 0.2)',
panel: '#FFFFFF',
yellow: '#F4C042',
violet: '#D264EC',
green: '#3bb78f',
red: '#bf1d67',
blue: '#52B9FF',
},
},
backgroundPosition: {
right: 'right 2rem bottom 50%',
rightDropdown: 'right 2rem bottom 45%',
},
minHeight: {
homePanel: '400px',
homePanelMobile: '300px',
},
maxHeight: {
'75vh': '75vh',
},
extend: {
hueRotate: {
8: '8deg',
},
width: {
13: '3.25rem',
15: '3.75rem',
radar: '800px',
},
height: {
radar: '800px',
'1/6': '16.66%',
'1/12': '8.333333%',
'75v': '75vh',
},
margin: {
radar: '8.333333%',
},
},
},
variants: {
extend: {
backgroundColor: ['checked'],
borderColor: ['checked'],
inset: ['checked'],
zIndex: ['hover', 'active'],
opacity: ['disabled'],
},
},
plugins: [],
}
export default config