20 lines
421 B
JavaScript
20 lines
421 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./index.html', './src/**/*.{ts,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
// NCloud 콘솔 스타일 다크 테마
|
|
ink: '#0b0f17',
|
|
panel: '#131927',
|
|
card: '#1a2234',
|
|
edge: '#26304a',
|
|
brand: '#00a0c8',
|
|
brand2: '#005a8c',
|
|
accent: '#3ddc97',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|