-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
56 lines (55 loc) · 1.85 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
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
screens: {
sm: '576px',
md: '768px',
lg: '992px',
xl: '1280px',
'2xl': '1920px',
},
colors: {
theme: {
transparent: 'transparent',
white: '#FFFFFF',
anthrazit: '#1A1A1A',
kraftpapier: '#D7BE9D',
petrol: '#006D7E',
rosa: '#EDD1C9',
orange: '#D77C12',
'medium-gray': '#737373',
'hover-gray': '#3A3734',
'light-gray': '#E9E9E9',
},
},
gridTemplateColumns: {
'2-col-155px': 'repeat(2,155px)',
'4-col-155px': 'repeat(4,155px)',
'8-col-155px': 'repeat(8,155px)',
},
fontFamily: {
sans: ['Roboto', ...defaultTheme.fontFamily.sans],
},
transitionProperty: {
'border-color': 'border-color',
},
animation: {
'pulse-once': 'pulseOnce 200ms ease-in-out',
'pop-once': 'popOnce 350ms ease',
},
keyframes: {
pulseOnce: {
'0%, 100%': { opacity: '1' },
'50%': { opacity: '0.2' },
},
popOnce: {
'0%, 100%': { transform: 'scale(1)' },
'50%': { transform: 'scale(1.05)' },
},
},
},
},
plugins: [require('@tailwindcss/typography'), require('@tailwindcss/forms')],
};