forked from egovernments/ui-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
36 lines (35 loc) · 916 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
const colors = require('tailwindcss/colors')
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
white: colors.white,
gray: colors.trueGray,
indigo: colors.indigo,
red: colors.rose,
yellow: colors.amber,
'indigo-lighter': '#b3bcf5',
'indigo': '#5c6ac4',
'indigo-dark': '#202e78',
'nav' : '#0B0C0C',
'border_color': '#D6D5D4',
'placeholder_color': '#B1B4B6',
'banner_bg': '#0B4B66',
'white' : '#FFFFFF',
'border' : '#F47738',
'input_border' : '#505A5F',
'text_input_code' : '#0B4B66',
'codebg' : "#FAFAFA",
'card_button_bg' : "#EEEEEE"
},
extend: {},
},
variants: {
extend: {},
},
plugins: [],
}