-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
46 lines (46 loc) · 1010 Bytes
/
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
/* eslint-disable no-undef */
module.exports = {
content: ['./app/**/*.hbs'],
theme: {
extend: {
colors: {
'green-1': '#46DD2D',
'yellow-1': '#D4F411',
'orange-2': '#FFA800',
'red-1': '#FF2E00',
'gray-1': '#444444',
'gray-2': '#666666',
'gray-3': '#151515',
'blue-1': '#00E0FF',
'orange-1': '#ED6E4D',
},
fontFamily: {
'Poiret-One': ['Poiret One', 'sans-serif'],
Roboto: ['Roboto', 'sans-serif'],
},
keyframes: {
'slide-down': {
from: {
top: '0',
},
to: {
top: '10rem',
},
},
'slide-up': {
from: {
top: '14rem',
},
to: {
top: '-5rem',
},
},
},
animation: {
'slide-down': 'slide-down 300ms ease-out forwards',
'slide-up': 'slide-up 300ms ease-out forwards',
},
},
},
plugins: [],
};