-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
52 lines (52 loc) · 1.28 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
const colors = require('tailwindcss/colors')
module.exports = {
purge: [],
darkMode: false, // or 'media' or 'class'
theme: {
colors : {
primary : '#005FB7',
disabledPrimary : '#4F88BC',
darkPrimary : '#364655',
darkSecondary : '#2F4057',
grayPrimary : '#5A5A5A',
bluePrimary :'#007EF3',
blueSecondary : '#0777DE',
Orange : '#F2AE2E',
darkOrange : '#c6850d',
Redwrong: '#D5393B',
Green : '#53BF06',
success : '#38A605',
bgProgress : '#C4C4C4',
'bg-dark' : '#E7E5DE',
bg : '#FEFCF4',
gray : '#BBBFC0',
red: colors.rose,
// red : '#D5393B',
black: colors.black,
white: colors.white,
indigo: colors.indigo,
yellow: colors.amber,
'red-alert' : '#FFE2E4',
'pink-alert' : '#EAB3B7',
'success-alert' : '#38A605',
'green-alert' : '#BFF4B9'
},
fontFamily: {
'header': [ 'Roboto', 'sans-serif'],
'prompt': [ 'Prompt', 'sans-serif'],
'sarabun': [ 'Sarabun', 'sans-serif'],
},
extend: {
dropShadow: {
'shadowProfile': '2.7px 2.7px 1px rgba(0, 0, 0, 0.1)',
},
outline: {
blackProfile: ['0.1px solid #E7E5DE', '1px'],
}
},
},
variants: {
extend: {},
},
plugins: [],
}