guardia-hrm/frontend/tailwind.config.js
DESKTOP-TKLFCPR\ython f7aa51c33f feat(hrm): GUARDiA HRM v1.0 AI 인사관리 플랫폼 (사원/조직/급여/근태/성과/채용/교육/AI분석)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-14 13:52:49 +09:00

15 lines
368 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
extend: {
colors: {
primary: { DEFAULT: '#1e40af', light: '#3b82f6', dark: '#1e3a8a' },
sidebar: { DEFAULT: '#0f172a', text: '#94a3b8', hover: '#1e293b' }
}
}
},
plugins: []
}