-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
102 lines (88 loc) · 2.75 KB
/
styles.css
File metadata and controls
102 lines (88 loc) · 2.75 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
/* @aolda/ui – Tailwind CSS v4 tokens (minimal) */
@theme {
/* Base colors */
--color-base-white: #ffffff;
--color-base-black: #181818;
/* Primary palette */
--color-primary-50: #e8f4fc;
--color-primary-100: #d1e8fa;
--color-primary-200: #a3d2f5;
--color-primary-300: #76bbef;
--color-primary-400: #48a4ea;
--color-primary-500: #1a8ee5;
--color-primary-600: #1572b8;
--color-primary-700: #105589;
--color-primary-800: #0a395c;
--color-primary-900: #051c2e;
/* Secondary palette */
--color-secondary-50: #eff1f6;
--color-secondary-100: #dfe3ec;
--color-secondary-200: #bec6da;
--color-secondary-300: #9eaac7;
--color-secondary-400: #7d8eb5;
--color-secondary-500: #5d72a2;
--color-secondary-600: #4a5b82;
--color-secondary-700: #384461;
--color-secondary-800: #252d41;
--color-secondary-900: #131720;
/* Grayscale palette */
--color-grayscale-50: #fafafa;
--color-grayscale-100: #f5f5f5;
--color-grayscale-200: #efefef;
--color-grayscale-300: #e2e2e2;
--color-grayscale-400: #bfbfbf;
--color-grayscale-500: #a0a0a0;
--color-grayscale-600: #777777;
--color-grayscale-700: #636363;
--color-grayscale-800: #444444;
--color-grayscale-900: #232527;
/* Status colors (optional if used) */
--color-status-negative: #e15e51;
--color-status-warning: #f7c96e;
--color-status-positive: #44bba1;
/* Semantic colors used by base layer */
--color-background: #ffffff;
--color-foreground: #181818;
--color-border: #bfbfbf;
/* Typography families */
--font-family-sans: 'Noto Sans KR', system-ui, sans-serif;
--font-family-mono: 'Fira Code', monospace;
/* Text scales: enables text-title-* and text-content-* classes */
--text-title-h1: 2rem; /* 32px */
--text-title-h2: 1.5rem; /* 24px */
--text-title-h3: 1.25rem; /* 20px */
--text-title-h4: 1rem; /* 16px */
--text-title-h5: 0.75rem; /* 12px */
--text-title-h6: 0.625rem; /* 10px */
--text-content-c3: 1.25rem; /* 20px */
--text-content-c4: 1rem; /* 16px */
--text-content-c6: 0.75rem; /* 12px */
--text-content-c7: 0.625rem; /* 10px */
/* Text weights */
--text-title-h1-weight: 700;
--text-title-h2-weight: 700;
--text-title-h3-weight: 700;
--text-title-h4-weight: 700;
--text-title-h5-weight: 700;
--text-title-h6-weight: 700;
--text-content-c3-weight: 400;
--text-content-c4-weight: 400;
--text-content-c6-weight: 400;
--text-content-c7-weight: 400;
/* Base line height */
--line-height-default: 1.5;
}
@layer base {
:root {
/* Map font-sans to our family; other color tokens are used directly */
--font-sans: var(--font-family-sans);
}
* {
@apply border-border;
}
body {
@apply bg-background text-foreground;
font-family: var(--font-sans);
line-height: var(--line-height-default);
}
}