forked from dialectlabs/blinks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
45 lines (45 loc) · 1.07 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
twitter: {
neutral: {
100: '#0f1419',
80: '#202327',
70: '#2f3336',
50: '#6E767D',
40: '#C4C4C4',
30: '#d9d9d9',
20: '#eff3f4',
},
accent: {
DEFAULT: '#1d9bf0',
darker: '#428cd2',
},
success: '#12dc88',
error: {
DEFAULT: '#ff5e5e',
lighter: '#ff7373',
},
warning: {
DEFAULT: '#ff9900',
lighter: '#ffb23d',
},
},
},
fontSize: {
// assuming twitter font size base - 15px
text: ['1rem', '1.2rem'],
subtext: ['0.867rem', '1.067rem'],
caption: ['0.73333rem', '0.93333rem'],
},
boxShadow: {
action:
'0px 2px 8px 0px rgba(59, 176, 255, 0.22), 0px 1px 48px 0px rgba(29, 155, 240, 0.32)',
},
},
},
plugins: [],
};