-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.ts
112 lines (111 loc) · 3.97 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
import { nextui } from '@nextui-org/react'
import type { Config } from 'tailwindcss'
const config: Config = {
darkMode: 'class',
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
'./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
bronze: '#CD7F32',
silver: '#C0C0C0',
gold: '#FFD700',
platinum: '#E5E4E2',
deamond: '#B9F2FF',
primary: '#cfbcff',
'on-primary': '#381e72',
'primary-container': '#4f378a',
'on-primary-container': '#e9ddff',
'inverse-primary': '#6750A4',
'primary-fixed': '#EADDFF',
'primary-fixed-dim': '#D0BCFF',
'on-primary-fixed': '#21005D',
'on-primary-fixed-variant': '#4F378B',
secondary: '#cbc2db',
'on-secondary': '#332d41',
'secondary-container': '#4a4458',
'on-secondary-container': '#e8def8',
'secondary-fixed': '#E8DEF8',
'secondary-fixed-dim': '#CCC2DC',
'on-secondary-fixed': '#1D192B',
'on-secondary-fixed-variant': '#4A4458',
tertiary: '#efb8c8',
'on-tertiary': '#4a2532',
'tertiary-container': '#633b48',
'on-tertiary-container': '#ffdad6',
'tertiary-fixed': '#FFD8E4',
'tertiary-fixed-dim': '#EFB8C8',
'on-tertiary-fixed': '#31111D',
'on-tertiary-fixed-variant': '#633B48',
error: '#ffb4ab',
'on-error': '#690005',
'error-container': '#93000a',
'on-error-container': '#ffdad6',
warning: '#ffb872',
'on-warning': '#4a2800',
'warning-container': '#6a3c00',
'on-warning-container': '#ffdcbe',
success: '#5edca9',
'on-success': '#003825',
'success-container': '#005138',
'on-success-container': '#7cf9c4',
info: '#84cfff',
'on-info': '#00344c',
'info-container': '#004c6c',
'on-info-container': '#c7e7ff',
background: '#1c1b1e',
'on-background': '#e6e1e6',
surface: '#1c1b1e',
'on-surface': '#e6e1e6',
'surface-variant': '#49454e',
'on-surface-variant': '#cac4cf',
'surface-dim': '#141218',
'surface-bright': '#3B383E',
'surface-container-l2': '#0F0D13',
'surface-container-l': '#1D1B20',
'surface-container': '#211F26',
'surface-container-h': '#2B2930',
'surface-container-h2': '#36343B',
'inverse-surface': '#E6E0E9',
'inverse-on-surface': '#322F35',
outline: '#948f99',
'outline-variant': '#49454F',
scrim: '#000000',
shadow: '#000000',
tg: {
bg: 'var(--tg-bg-color)',
bottomBar: 'var(--tg-bottom-bar-color)',
header: 'var(--tg-header-color)',
theme: {
accentText: 'var(--tg-theme-accent-text-color)',
bg: 'var(--tg-bg-color)',
bottomBarBg: 'var(--tg-bottom-bar-color)',
button: 'var(--tg-theme-button-color)',
buttonText: 'var(--tg-theme-button-text-color)',
destructiveText: 'var(--tg-theme-destructive-text-color)',
headerBg: 'var(--tg-header-color)',
hint: 'var(--tg-theme-hint-color)',
link: 'var(--tg-theme-link-color)',
secondaryBg: 'var(--tg-theme-secondary-bg-color)',
sectionBg: 'var(--tg-theme-section-bg-color)',
sectionHeader: 'var(--tg-theme-section-header-color)',
sectionSeparator: 'var(--tg-theme-section-separator-color)',
subtitle: 'var(--tg-theme-subtitle-color)',
text: 'var(--tg-theme-text-color)',
},
},
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
},
},
plugins: [nextui()],
}
export default config