forked from idriss-xyz/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.mjs
62 lines (61 loc) · 1.26 KB
/
tailwind.config.mjs
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
import plugin from 'tailwindcss/plugin';
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{ts,tsx,html}'],
theme: {
extend: {
colors: {
polymarket: {
gray: '#1D2B39',
},
idriss: {
primary: {
500: '#11dd74',
400: '#11cc74',
},
},
twitter: {
primary: '#1D9BF0',
},
tally: {
purple: {
100: '#EBE5FF',
500: '#725BFF',
},
gray: {
500: '#667085',
600: '#475467',
700: '#344054',
900: '#101828',
},
teal: {
50: '#D9FFFB',
600: '#00BFAF',
},
red: {
500: '#F44061',
100: '#FFE6E7'
},
border: {
primary: '#EAECF0',
gray: { 700: '#2D3748' },
},
text: {
primary: '#1D2939'
}
},
},
},
},
plugins: [
'@tailwindcss/forms',
plugin(function ({ addUtilities }) {
const newUtilities = {
'.fill-rule-non-zero': {
'fill-rule': 'nonzero',
},
};
addUtilities(newUtilities);
}),
],
};