-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
36 lines (31 loc) · 946 Bytes
/
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
import type { Config } from 'tailwindcss';
import colors from 'tailwindcss/colors';
const config: Config = {
content: [
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
theme_primary: colors.orange,
theme_secondary: colors.lime,
theme_bg: colors.black,
theme_bg_accent: colors.neutral['900'],
theme_fg: colors.white,
theme_fg_accent: colors.gray['500'],
},
boxShadow: {
glowing_primary: `0px 0px 15px 5px ${colors.orange[500]}`,
glowing_secondary: `0px 0px 15px 5px ${colors.lime[500]}`,
},
keyframes: { circle: { to: { 'offset-distance': '100%' } } },
animation: {
'spin-slow': 'circle 5s linear infinite',
'spin-fast': 'circle 3s linear infinite',
},
},
},
};
export default config;