-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
45 lines (45 loc) · 921 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
45 lines (45 loc) · 921 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
37
38
39
40
41
42
43
44
45
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
darkMode: 'class',
theme: {
screens: {
sm: '715px',
md: '895px',
lg: '1024px',
xl: '1280px',
'2xl': '1536px',
},
colors: {
h3: '#555555',
primary: '#FF0000',
secondary: '#C0C0C0',
rookie: '#FF6200',
player: '#FFA200',
pro: '#FFC800',
veteran: '#FFEA00',
white: 'white',
gray: 'gray',
black: 'black',
fill: {
dark: '#0C0C0C',
light: '#F4F6F9',
},
nav: {
dark: '#1A1A1A',
light: '#FFFFFF',
},
component: {
dark: '#131313',
light: '#FEFEFE',
},
spotify: '#1DB954',
appleMusic: '#FC3C44',
soundcloud: '#F27100',
bandcamp: '#4AC4E4',
},
},
plugins: [require('@tailwindcss/line-clamp')],
};