-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
58 lines (57 loc) · 1.48 KB
/
tailwind.config.js
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
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
mode: 'jit',
content: [
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
],
theme: {
fontFamily: {
sans: ['Space Grotesk', 'sans-serif'],
akira: ['Akira Expanded', 'sans-serif'],
},
extend: {
screens: {
xs: '460px',
'dao-md': '1200px',
...defaultTheme.screens,
},
colors: {
neutral: {
600: '#959DB2',
700: '#6F7689',
800: '#3E4557',
900: '#161718',
},
magicPurple: {
300: '#A569FF',
500: '#523480',
},
pinkPotion: {
300: '#FE61A7',
},
misticOrange: {
300: '#FF913E',
},
magicSky: {
300: '#00E4FE',
},
},
backgroundImage: (theme) => ({
home: "url('/images/background/homeHero.png')",
homeBg: "url('/images/background/homeBg.png')",
pinkHomeBg: "url('/images/background/pinkHomeBg.png')",
footer: "url('/images/background/footer.png')",
projects: "url('/images/background/projectsBg.png')",
about: "url('/images/background/aboutBg.png')",
contact: "url('/images/background/contactBg.png')",
contactMobile: "url('/images/background/contactBgMobile.png')",
shop: "url('/images/background/shopBg.png')",
}),
},
},
variants: {
extend: {},
},
plugins: [],
}