-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
69 lines (68 loc) · 1.55 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors');
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx}', // Note the addition of the `app` directory.
'./src/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
borderRadius: {
DEFAULT: '.5rem',
},
boxShadow: {
'inner-avatar': 'inset 0 0 7px 0 rgb(0 0 0 / 0.05)',
},
colors: {
primary: {
orange: '#FCA311',
navy: '#14213D',
},
secondary: {
orange: '#eb970e',
navy: '#1b2c52',
gray: '#E5E5E5',
},
neutral: {},
success: {
// 50: '#F0FDF4',
100: '#DCFCE7',
200: '#BBF7D0',
300: '#86EFAC',
400: '#4ADE80',
500: '#22C55E',
600: '#16A34A',
700: '#15803D',
800: '#166534',
900: '#14532D',
},
warning: {
50: '#FFFBEB',
100: '#FEF3C7',
200: '#FDE68A',
300: '#FCD34D',
400: '#FBBF24',
500: '#F59E0B',
600: '#D97706',
700: '#B45309',
800: '#92400E',
900: '#78350F',
},
danger: {
50: '#FEF2F2',
100: '#FEE2E2',
200: '#FECACA',
300: '#FCA5A5',
400: '#F87171',
500: '#EF4444',
600: '#DC2626',
DEFAULT: '#B91C1C',
700: '#B91C1C',
800: '#991B1B',
900: '#7F1D1D',
},
},
},
},
plugins: [],
};