-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.ts
34 lines (31 loc) · 985 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
import type { Config } from 'tailwindcss';
import { nextui } from '@nextui-org/react';
import colors from './app/shared/config/tailwind/colors';
import fontSize from './app/shared/config/tailwind/font-sizes';
export default {
future: {
hoverOnlyWhenSupported: true,
},
content: ['./app/**/*.{js,ts,jsx,tsx,mdx}', './node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
manrope: ['"Manrope"', 'sans-serif'],
},
boxShadow: {
'md-sm': '0px 3px 4px 0px #E0E4F5, 0px 1px 1px 0px #C8CBD9',
},
dropShadow: {
button: ['0px 1px 4px #E0E4F5', '0px 1px 1px #C8CBD9'],
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
colors,
fontSize,
},
},
darkMode: 'class',
plugins: [nextui()],
} satisfies Config;