-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
47 lines (46 loc) · 1.09 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
import type { Config } from 'tailwindcss'
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
backgroundImage: {
index: 'url(/assets/index-background.png)',
dan: 'url(/assets/pfps/dan-bg.jpg)',
},
colors: {
primary: {
400: '#D86A6A', // hover red
500: '#EE2737', // logo red
600: '#CB303D', // float item red
700: '#C13541', // title red
},
secondary: {
400: '#BC9496', // light content
500: '#6E4648', // text
},
light: {
400: '#FFDFCA', // card
500: '#FDD5BD', // background
},
dark: {
500: '#121212', // background
},
discord: {
500: '#7289DA', // discord color
}
},
maxWidth: {
'8xl': '88rem',
'9xl': '96rem',
'10xl': '104rem',
'11xl': '112rem',
},
},
},
plugins: [],
}
export default config