-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.ts
67 lines (65 loc) · 1.28 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import { nextui } from '@nextui-org/react';
import type { Config } from 'tailwindcss';
const colors = {
main: '#6304FF',
system: {
error: '#FF2828',
success: '#3D6EFF',
},
black: '#111111',
white: '#FFFFFF',
gray: {
900: '#1B1B1B',
800: '#2B2B2B',
700: '#616161',
600: '#757575',
500: '#9E9E9E',
400: '#B5B5B5',
300: '#E0E0E0',
200: '#EEEEEE',
100: '#F5F5F5',
50: '#FAFAFA',
},
title: '#FFFFFF',
subtitle: '#F5F5F5',
background: {
base: '#101010',
overlay: '#232225',
},
};
export default {
content: [
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/**/*.{js,ts,jsx,tsx,mdx}',
'./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
fontFamily: {
sans: ['var(--font-montserrat)'],
},
colors,
},
screens: {
mobile: '677px',
tablet: '1400px',
md: '768px',
lg: '1024px',
},
},
plugins: [
nextui({
themes: {
'custom-dark': {
extend: 'dark',
colors: {
background: colors.background.base,
foreground: colors.white,
},
},
},
}),
],
} satisfies Config;