Skip to content

Commit 8baaa56

Browse files
committed
style: update light theme colors and button styles for improved UI consistency
1 parent 470c50d commit 8baaa56

File tree

1 file changed

+28
-1
lines changed

1 file changed

+28
-1
lines changed

src/styles/themes/light.scss

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
11
[data-theme="light"] {
2-
--background-color-tertiary: #999;
2+
--background-color-primary: #f7f9fc;
3+
--background-color-secondary: #ffffff;
4+
--background-color-tertiary: #e3e8f0;
5+
--background-color-quaternary: #cfd8e3;
6+
--background-color-opaque: rgba(0, 0, 0, 0.04);
7+
--background-color-glow: rgba(61, 157, 254, 0.08);
8+
--border-color-primary: #3d9dfe;
9+
--border-color-opaque: rgba(0, 0, 0, 0.08);
10+
--box-shadow-focus: 0 0 0 4px rgba(61, 157, 254, 0.2);
11+
--text-color-primary: #222222;
12+
--text-color-secondary: #555555;
13+
--text-color-tertiary: #ffffff;
14+
--text-color-link: #3d9dfe;
15+
--text-color-link-hover: #1583ff;
16+
17+
--button-primary-bg: var(--border-color-primary);
18+
--button-primary-color: var(--text-color-tertiary);
19+
--button-primary-bg-hover: var(--text-color-link-hover);
20+
--button-secondary-bg: var(--background-color-glow);
21+
--button-secondary-color: var(--text-color-primary);
22+
--button-secondary-bg-hover: #e3e8f0;
23+
--button-success-bg: #22c55e;
24+
--button-success-color: var(--text-color-tertiary);
25+
--button-warning-bg: #fbbf24;
26+
--button-warning-color: var(--text-color-primary);
27+
--button-danger-bg: #ef4444;
28+
--button-danger-color: var(--text-color-tertiary);
29+
--button-outline-color: var(--border-color-primary);
330
}

0 commit comments

Comments
 (0)