-
Notifications
You must be signed in to change notification settings - Fork 1
/
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
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors')
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
darkMode: 'class',
theme: {
fontFamily: {
lato: ['Lato', 'sans-serif'],
exo: ['Exo', 'sans-serif'],
lexend: [
'Lexend',
'sans-serif',
]
},
extend: {
colors: {
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
white: colors.white,
gray: colors.gray,
emerald: colors.emerald,
indigo: colors.indigo,
yellow: colors.yellow,
primary: {
DEFAULT: '#FCFCFC',
100: '#FCFCFC',
200: '#F5F5F5',
300: '#E6E6E6',
400: '#CECECE',
500: '#B6B6B6'
},
secondary: {
DEFAULT: '#170440',
100: '#250666',
200: '#1E0553',
300: '#170440',
400: '#110133',
500: '#0F0327'
},
blue: colors.blue,
red: colors.red
},
backgroundImage: {
'welcome-dark': "url('/images/sections/welcome-dark.jpg')",
'welcome-light': "url('/images/sections/welcome-light.svg')",
'faq': "url('/images/sections/faq.svg')",
'applications-light': "url('/images/sections/applications-light.svg')",
'applications-dark': "url('/images/sections/applications-dark.svg')"
}
}
},
plugins: [],
future: {
hoverOnlyWhenSupported: true
}
}