-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
57 lines (53 loc) · 1.42 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
darkMode: "class",
theme: {
extend: {
colors: {
twitterBlue: '#1da1f2',
grayBorder: '#ebeef0',
grayBorderDark: '#2F2F2F',
separatorColor: '#f7f9fa',
bodyDark: '#000',
tweetColor: '#E1E1E6',
textDark: '#E7E9EA',
mute: '#536471',
muteDark: '#71767B',
retweetGreen: 'rgb(0, 186, 124)',
likePink: 'rgb(249, 24, 128)'
},
boxShadow: {
floatButton: 'rgba(217, 217, 217, 0.2) 0px 0px 5px, rgba(217, 217, 217, 0.25) 0px 1px 4px 1px'
},
animation: {
fadeIn: 'fadeIn .2s ease-in-out backwards',
fadeOut: 'fadeOut .2s ease-in-out forwards'
},
keyframes: {
fadeIn: {
'0%': { transform: 'translateX(-100%)' }
},
fadeOut: {
'100%': { transform: 'translateX(-100%)' }
}
}
},
screens: {
'2xl': {'max': '1535px'},
// => @media (max-width: 1535px) { ... }
'xl': {'max': '1279px'},
// => @media (max-width: 1279px) { ... }
'lg': {'max': '1023px'},
// => @media (max-width: 1023px) { ... }
'md': {'max': '767px'},
// => @media (max-width: 767px) { ... }
'sm': {'max': '425px'},
// => @media (max-width: 425px) { ... }
}
},
plugins: [],
}