-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
48 lines (48 loc) · 1.44 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/app/**/*.{js,ts,tsx,jsx}', './src/components/**/*.{js,ts,tsx,jsx}'],
theme: {
extend: {
colors: {
BASE_CARD: '#F9FAFB',
FADE_BLACK: '#161C24',
DRIVLY: '#060611',
DARK_BTN: '#2D333A',
BORDER_DARK: '#D2D5D8',
GRAY_HEAD: '#EBECF0',
NAV_GRAY: '#8a8f98',
URL_GRAY: '#A4A9B3',
LIGHT_BORDER: '#F5F5F5',
LIGHT_GRAY: '#EAEAEA',
BG_LIGHT: '#f6f9fc',
OFF_WHITE: '#F9F9F9',
WHITE_GRAY: '#F9F9FB',
DRIVLY_GREEN: '#00CAB9',
txtPrimaryColor: '#16161a',
txtHintColor: '#666f75',
txtDisabledColor: '#a0a6ac',
primaryColor: '#16161a',
bodyColor: '#f8f9fa',
baseColor: '#ffffff',
baseAlt1Color: '#e4e9ec',
baseAlt2Color: '#d7dde4',
baseAlt3Color: '#c6cdd7',
baseAlt4Color: '#a5b0c0',
infoColor: '#3da9fc',
infoAltColor: '#d2ecfe',
successColor: '#2aac76',
successAltColor: '#d2f4e6',
dangerColor: '#e13756',
dangerAltColor: '#fcdee4',
warningColor: '#ff8e3c',
warningAltColor: '#ffeadb',
whitishGray: '#F1F1F1',
bgDrivly: '#f6f9fc',
darkGreen: '#3A6D48',
lightBorder: '#F5F5F5',
MODAL_OVERLAY: '#DCDCDC',
},
},
},
plugins: [require('@tailwindcss/forms'), require('tailwind-scrollbar-hide')],
}