-
Notifications
You must be signed in to change notification settings - Fork 11
/
tailwind.config.js
66 lines (65 loc) · 1.43 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
58
59
60
61
62
63
64
65
66
/** @type {import('tailwindcss').Config} */
const widthExtension = {
'full-content': '980px',
};
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: [
'./node_modules/flowbite-react/**/*.js',
'./app/**/*.{js,ts,jsx,tsx}',
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
letterSpacing: {
widest: '.2em',
},
extend: {
animation: {
'pulse-once': 'fade-in .4s ease-in-out',
},
keyframes: {
'fade-in': {
'0%': {
opacity: 0,
},
'50%': {
opacity: 0.5,
},
'100%': {
opacity: 1,
},
},
},
fontFamily: {
'open-sans-condensed': [
'Open Sans Condensed',
...defaultTheme.fontFamily.sans,
],
'din-neu': [
'DINNeuzeitGroteskLTW01-_812426',
...defaultTheme.fontFamily.sans,
],
},
rotate: {
270: '270deg',
},
maxWidth: {
...widthExtension,
},
width: {
...widthExtension,
},
colors: {
'gray-c1': 'rgb(37,33,40)',
'gray-c2': 'rgb(47,43,50)',
highlight: 'rgb(257, 97, 72)',
},
gridTemplateColumns: {
'auto-sm': 'repeat(auto-fill,minmax(120px,1fr))',
},
backgroundImage: {},
},
},
plugins: [require('flowbite/plugin')],
};