-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.ts
45 lines (44 loc) · 1.04 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
41
42
43
44
45
import type { Config } from 'tailwindcss';
import defaultTheme from 'tailwindcss/defaultTheme';
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
backgroundImage: {
nebula: 'url("/img/nebula.webp")',
space: 'url("/img/space.webp")',
},
boxShadow: {
gloria: '0 0 50px -20px white',
},
colors: {
brand: '#8f8e8f',
konf: {
yellow: '#FFE500',
},
},
transitionProperty: {
'max-height': 'max-height',
},
dropShadow: {
hero: '0px 5.175px 5.175px rgba(0, 0, 0, 0.25)',
},
},
screens: {
xxs: '500px',
xs: '600px',
sm: defaultTheme.screens.sm,
md: defaultTheme.screens.md,
mdx: '940px',
lg: defaultTheme.screens.lg,
xl: defaultTheme.screens.xl,
'2xl': defaultTheme.screens['2xl'],
},
},
plugins: [],
};
export default config;