forked from stevekinney/polymorphic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
94 lines (91 loc) · 1.67 KB
/
tailwind.config.cjs
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/** @type {import('tailwindcss').Config} */
const buttons = require('./plugins/tailwind-buttons.cjs');
const colors = {
primary: {
DEFAULT: '#5E2885',
50: '#F8F3FB',
100: '#E8D7F3',
200: '#C7A1E3',
300: '#A66AD2',
400: '#8539BC',
500: '#5E2885',
600: '#502271',
700: '#421C5E',
800: '#34164A',
900: '#27103',
},
secondary: {
DEFAULT: '#EEE4F7',
50: '#FBF9FD',
100: '#F8F3FB',
200: '#F1E7F8',
300: '#EADCF4',
400: '#E3D0F1',
500: '#DCC4ED',
600: '#C299E0',
700: '#A86ED3',
800: '#8E43C6',
900: '#7030A1',
},
success: {
DEFAULT: '#168375',
50: '#6BE6D6',
100: '#5AE3D1',
200: '#37DDC7',
300: '#22C8B3',
400: '#1CA594',
500: '#168375',
600: '#0E534A',
700: '#06231F',
800: '#000000',
900: '#000000',
},
info: {
DEFAULT: '#3F88C5',
50: '#CCDFF0',
100: '#BCD6EB',
200: '#9DC2E1',
300: '#7EAFD8',
400: '#5E9BCE',
500: '#3F88C5',
600: '#2F6B9D',
700: '#224D72',
800: '#153046',
900: '#08131B',
},
warning: {
DEFAULT: '#FFBA08',
50: '#FFEDC0',
100: '#FFE8AB',
200: '#FFDC82',
300: '#FFD15A',
400: '#FFC531',
500: '#FFBA08',
600: '#CF9500',
700: '#976D00',
800: '#5F4400',
900: '#271C00',
},
error: {
DEFAULT: '#D00000',
50: '#FF8989',
100: '#FF7474',
200: '#FF4B4B',
300: '#FF2323',
400: '#F90000',
500: '#D00000',
600: '#980000',
700: '#600000',
800: '#280000',
900: '#000000',
},
};
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
colors,
},
},
plugins: [buttons],
};