generated from technologiestiftung/template-repo-citylab
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
54 lines (52 loc) · 1.45 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx}',
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
// Or if using `src` directory:
'./src/**/*.{js,ts,jsx,tsx}',
],
theme: {
fontFamily: {
nunito: ['Nunito Sans', 'Arial'],
robot: ['IBMPlexMono-Regular', 'Arial'],
'robot-bold': ['IBMPlexMono-Bold', 'Arial'],
'robot-light': ['IBMPlexMono-Light', 'Arial'],
},
extend: {
colors: {
'odis-dark': '#1d2c5d',
'odis-light': '#4c68c7', // #263C89
'odis-light-2': '#e8ebf8',
'odis-extra-light': '#F7F8FD',
active: '#B3F2E0',
'active-light': '#e9fbf6',
'active-dark': '#25735d',
'warning-100': '#fff1f0',
'warning-200': '#ffa39e',
'warning-300': '#f5222d',
},
keyframes: {
'lds-hourglass': {
'0%': {
transform: 'rotate(0)',
'animation-timing-function': 'cubic-bezier(0.55, 0.055, 0.675, 0.19)',
},
'50%': {
transform: 'rotate(900deg)',
'animation-timing-function': 'cubic-bezier(0.215, 0.61, 0.355, 1)',
},
'100%': {
transform: 'rotate(1800deg)',
},
},
},
animation: {
'spin-slow': 'spin 3s linear infinite',
'cross-spin-2': 'lds-hourglass 1.2s infinite',
},
},
},
plugins: [],
}