-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
44 lines (42 loc) · 998 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
orange: {
main : 'hsl(26, 100%, 55%)',
pale: 'hsl(25, 100%, 94%)'
},
blue: {
'very-dark': 'hsl(220, 13%, 13%)',
'dark-grayish': 'hsl(219, 9%, 45%)',
'grayish': 'hsl(220, 14%, 75%)',
'light-grayish': 'hsl(223, 64%, 98%)'
},
black: 'hsl(0, 0%, 0%)',
white: 'hsl(0, 0%, 100%)'
},
fontFamily: {
kumbh: ['Kumbh\\ Sans', 'sans-serif']
},
fontSize: {
paragraph: '16px'
},
backgroundImage: {
},
screens: {
'mobile': '376px',
'desktop': '1440px'
},
boxShadow: {
'custom': '0 25px 50px -12px rgba(255, 125, 26, 0.5)',
'customcard': '5px 5px 0px 0px rgba(255,125,26,1.000)'
}
},
},
plugins: [],
}