-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
38 lines (35 loc) · 915 Bytes
/
tailwind.config.cjs
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
// tailwind.config.js
const colors = require('tailwindcss/colors')
module.exports = {
purge: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {},
colors:{
...colors,
'navColor': '#F2EEE8',
'footerBorderColor': '#E3DBD0',
'buttonColor': '#0161FE',
'bodyColor': '#1E1919',
'btnColor': '#3983FF',
'borderColor': '#C9C5BD',
'imgOneColor': '#15C8EB',
'imgTwoColor': '#FF5A1F',
'lifeColor': '#FFAFA5',
'hikeColor': '#9B0032',
'homeColor': '#FA551F',
'artColor': '#017791',
'officeColor': '#B4DC19',
'sophiaColor': '#78286E',
'glassColor': '#FFAFA5',
'lastColor': '#FAD24B',
'inputColor': '#787878',
'signUpBtnColor': '#0C86EA',
'mobileLogin': '#F6F9FC'
}
},
variants: {
extend: {},
},
plugins: [],
}