-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
40 lines (39 loc) · 1.03 KB
/
tailwind.config.ts
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
import containerQueries from '@tailwindcss/container-queries';
import forms from '@tailwindcss/forms';
import typography from '@tailwindcss/typography';
import defaultTheme from 'tailwindcss/defaultTheme';
import type { Config } from 'tailwindcss';
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
screens: {
'3xl': '1600px'
},
animation: {
fade: 'fadeIn .25s ease-in-out'
},
keyframes: {
fadeIn: {
from: { opacity: '0' },
to: { opacity: '1' }
}
},
colors: {
'theme-blue': '#4e6e80',
'theme-blue-light': '#718B99',
'theme-blue-extra-light': '#E4ECED',
'theme-gray': '#717070',
'theme-brown-light': '#D2CFCC'
},
fontFamily: {
poppins: ['poppins', ...defaultTheme.fontFamily.sans],
jakarta: ['Plus Jakarta Sans', ...defaultTheme.fontFamily.sans]
},
boxShadow: {
input: '0 0 0 1px #dddddd, 0 2px 4px 0 rgb(0 0 0 / 7%), 0 1px 1.5px 0 rgb(0 0 0 / 5%)'
}
}
},
plugins: [typography, forms, containerQueries]
} satisfies Config;