forked from thisisthepy/Gemstone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
178 lines (172 loc) · 3.73 KB
/
tailwind.config.cjs
File metadata and controls
178 lines (172 loc) · 3.73 KB
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
/* eslint-disable global-require */
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./dashboard/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}',
'./node_modules/flowbite/**/*.js',
],
darkMode: 'class',
theme: {
extend: {
colors: {
primary: {
50: '#fefbf3',
100: '#fef3e2',
200: '#fde5c7',
300: '#fcd199',
400: '#f9b968',
500: '#f59e0b',
600: '#d97706',
700: '#b45309',
800: '#92400e',
900: '#78350f',
},
// 로고 시그니처 색상들
signature: {
green: '#8BC34A', // 밝은 녹색
yellow: '#FFC107', // 황금색/노란색
blue: '#2196F3', // 파란색
pink: '#E91E63', // 핑크/자홍색
},
},
fontFamily: {
sans: [
'Inter',
'ui-sans-serif',
'system-ui',
'-apple-system',
'system-ui',
'Segoe UI',
'Roboto',
'Helvetica Neue',
'Arial',
'Noto Sans',
'sans-serif',
'Apple Color Emoji',
'Segoe UI Emoji',
'Segoe UI Symbol',
'Noto Color Emoji',
],
body: [
'Inter',
'ui-sans-serif',
'system-ui',
'-apple-system',
'system-ui',
'Segoe UI',
'Roboto',
'Helvetica Neue',
'Arial',
'Noto Sans',
'sans-serif',
'Apple Color Emoji',
'Segoe UI Emoji',
'Segoe UI Symbol',
'Noto Color Emoji',
],
mono: [
'ui-monospace',
'SFMono-Regular',
'Menlo',
'Monaco',
'Consolas',
'Liberation Mono',
'Courier New',
'monospace',
],
},
transitionProperty: {
width: 'width',
},
textDecoration: ['active'],
minWidth: {
kanban: '28rem',
},
typography: (theme) => ({
DEFAULT: {
css: {
code: {
backgroundColor: '#f7f5f3',
color: '#57534e',
borderRadius: theme('borderRadius.lg'),
padding: theme('spacing.1.5') + ' ' + theme('spacing.3'),
fontWeight: '600',
fontSize: '0.875em',
border: '1px solid #e7e5e4',
boxShadow: '0 1px 3px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8)',
letterSpacing: '0.025em',
},
'code::before': {
content: '""',
},
'code::after': {
content: '""',
},
pre: {
backgroundColor: '#292524',
color: '#fafaf9',
borderRadius: theme('borderRadius.xl'),
border: '1px solid #44403c',
boxShadow: '0 4px 16px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1)',
backdropFilter: 'blur(8px)',
},
'pre code': {
backgroundColor: 'transparent',
color: 'inherit',
border: 'none',
padding: '0',
boxShadow: 'none',
fontWeight: '400',
},
},
},
invert: {
css: {
code: {
backgroundColor: '#3c3c3c',
color: '#e7e5e4',
border: '1px solid #525252',
boxShadow: '0 1px 3px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1)',
},
pre: {
backgroundColor: '#1c1917',
color: '#fafaf9',
border: '1px solid #292524',
boxShadow: '0 4px 16px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05)',
},
},
},
}),
},
},
safelist: [
// In Markdown (README…)
'justify-evenly',
'overflow-hidden',
'rounded-md',
// From the Hugo Dashboard
'w-64',
'w-1/2',
'rounded-l-lg',
'rounded-r-lg',
'bg-gray-200',
'grid-cols-4',
'grid-cols-7',
'h-6',
'leading-6',
'h-9',
'leading-9',
'shadow-lg',
'bg-opacity-50',
'dark:bg-opacity-80',
// For Astro one
'grid',
],
plugins: [
//
require('flowbite/plugin'),
require('flowbite-typography'),
require('@tailwindcss/typography'),
require('tailwind-scrollbar')({ nocompatible: true }),
],
};