-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
tailwind.config.js
69 lines (69 loc) · 1.54 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} */
export default {
darkMode: 'class',
content: ['./src/**/*.{html,js,ts,svelte}'],
theme: {
fontSize: {
xs: ['12px', '16px'],
sm: ['14px', '20px'],
base: ['16px', '24px'],
lg: ['18px', '28px'],
xl: ['20px', '28px'],
'2xl': ['24px', '32px'],
'3xl': ['30px', '36px'],
'4xl': ['36px', '40px'],
'5xl': ['48px', '1'],
'6xl': ['60px', '1'],
'7xl': ['72px', '1'],
'8xl': ['96px', '1'],
'9xl': ['128px', '1']
},
extend: {
colors: {
primary: '#144046',
body: '#3E6267',
link: '#0099AF',
hover: '#00B7D2',
highlight: '#051173',
input: '#BDD2D4',
teal: '#E4EBEC',
offwhite: '#F0F6F6',
grey: '#9FB4B6',
lightBlue: '#D4E1E2',
error: '#DF3C3C',
supporter: '#095D73',
map: '#333333',
mapButton: '#5F5F5F',
mapBorder: '#E8E8E8',
mapHighlight: '#1C4347',
mapLabel: '#A4A4A4',
searchHover: '#F8F8F8',
searchSubtext: '#999999',
mobileMenu: '#085D69',
mobileButtons: '#D6E4E6',
mobileButtonsActive: '#C3DCDF',
statPositive: '#0B9072',
statNegative: '#EB5757',
statBorder: '#C8DCDF',
taggerTime: '#7C9CA0',
created: '#10B791',
deleted: '#EB5757',
bitcoin: '#F7931A',
bitcoinHover: '#F9A136',
nostr: '#8b5cf6',
twitter: '#1DA1F2',
dark: '#06171C'
},
keyframes: {
wiggle: {
'0%, 100%': { transform: 'rotate(-3deg)' },
'50%': { transform: 'rotate(3deg)' }
}
},
animation: {
wiggle: 'wiggle 1s ease-in-out infinite'
}
}
},
plugins: []
};