27 lines
877 B
CSS
27 lines
877 B
CSS
:root {
|
|
--color-primary: #C89D6E;
|
|
--color-primary-dark: #A67C52;
|
|
--color-secondary: #2E5C4E;
|
|
--color-secondary-dark: #1F3A30;
|
|
--color-accent: #E8E4D8;
|
|
--color-accent-dark: #D9D3C4;
|
|
--color-bg: #F9F7F3;
|
|
--color-bg-alt: #EFE9DD;
|
|
--color-text: #3D2817;
|
|
--color-text-light: #6B5D4F;
|
|
--color-border: #D9D3C4;
|
|
--color-success: #2E7D32;
|
|
--color-warning: #F57C00;
|
|
--color-danger: #C62828;
|
|
--radius-sm: 4px;
|
|
--radius-md: 8px;
|
|
--radius-lg: 12px;
|
|
--radius-xl: 16px;
|
|
--shadow-sm: 0 1px 3px rgba(61, 40, 23, 0.08);
|
|
--shadow-md: 0 4px 12px rgba(61, 40, 23, 0.12);
|
|
--shadow-lg: 0 8px 24px rgba(61, 40, 23, 0.15);
|
|
--transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
--transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
--site-font-base: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
|
|
}
|