-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
50 lines (49 loc) · 1.02 KB
/
Copy pathtailwind.config.js
File metadata and controls
50 lines (49 loc) · 1.02 KB
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
// @ts-check
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
fontFamily: {
sans: ['var(--font-kanit)'],
display: ['var(--font-roboto)'],
},
colors: {
transparent: 'transparent',
blue: 'rgb(0 51 128 / 75%)',
cyan: 'rgb(61 225 255 / 75%)',
pink: 'rgb(255 49 175 / 75%)',
yellow: 'rgb(255 210 101 / 75%)',
white: '#dddddd',
gray: {
lightest: '#999999',
light: '#777777',
DEFAULT: '#333333',
dark: '#222222',
darkest: '#171717',
},
black: '#111111',
},
extend: {
keyframes: {
'arrow-l': {
'0%': {
opacity: '0',
},
'70%': {
opacity: '1',
},
'100%': {
opacity: '0',
left: '-40px',
},
},
},
animation: {
'arrow-l': 'arrow-l 2.5s ease-in-out infinite',
},
},
},
plugins: [],
};