-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
48 lines (47 loc) · 1.11 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
/** @type {import('tailwindcss').Config} */
const { fontFamily } = require('tailwindcss/defaultTheme')
module.exports = {
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/aspect-ratio'),
require('@tailwindcss/typography'),
],
content: ['./src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
ringColor: {
DEFAULT: '#579660',
},
animation: {
'fade-in': 'fade-in 0.5s linear forwards',
marquee: 'marquee var(--marquee-duration) linear infinite',
},
colors: {
primary: '#579660',
'primary-dark': '#4d8455',
'primary-light': '#60a56a',
'primary-extra-light': '#EEF4EF',
secondary: '#87563B',
'secondary-light': '#F5DDD2',
},
fontFamily: {
sans: ['var(--font-inter)', ...fontFamily.sans],
},
keyframes: {
'fade-in': {
from: {
opacity: 0,
},
to: {
opacity: 1,
},
},
marquee: {
'100%': {
transform: 'translateY(-50%)',
},
},
},
},
},
}