-
Notifications
You must be signed in to change notification settings - Fork 10
/
tailwind.config.js
38 lines (38 loc) · 1014 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
/** @type {import("tailwindcss").Config} */
module.exports = {
mode: 'jit',
content: ['./src/**/*.{js,jsx,ts,tsx}', './public/**/*.html'],
theme: {
extend: {
colors: {
white: '#FFFFFF',
black: '#000000',
bgWhite: '#F7F8F8',
gray: '#ACAEB2',
darkGray: '#818385',
lightGray: '#D7DADE',
primaryBlue: '#0380f3',
lightBlue: '#4EA6F6',
emporixGold: '#FFA800',
blueGray: '#87ABBF',
darkBlue: '#0f3564',
brightGreen: '#4BCB67',
brightRed: '#e00820',
lightRed: '#FF6865',
tinBlue: '#214559',
lightPink: '#FFCCCB',
eerieBlack: '#1F1F1F',
gray80: '#cccccc',
aliceBlue: '#F6F7F9',
manatee: '#8e9099',
yellow: '#FAC420',
quartz: '#E1E1E6',
limeGreen: '#219653',
herringSilver: '#C4C5CC',
flamingo: '#EB5757',
dodgerBlue: '#2F80ED',
},
},
},
plugins: [require('tailwindcss-font-inter')],
}