Skip to content

Commit 6ea145c

Browse files
committed
feat: better light colours
1 parent ed53149 commit 6ea145c

File tree

1 file changed

+14
-11
lines changed

1 file changed

+14
-11
lines changed

static/css/main.css

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
/* CSS Variables for theming */
22
:root {
33
/* Light theme colors */
4-
--bg-primary: #ffffff;
5-
--bg-secondary: #f8f9fa;
6-
--bg-tertiary: #e9ecef;
7-
--text-primary: #212529;
8-
--text-secondary: #6c757d;
9-
--text-muted: #868e96;
10-
--accent-primary: #007bff;
11-
--accent-hover: #0056b3;
12-
--border-color: #dee2e6;
13-
--code-bg: #f8f9fa;
14-
--shadow: rgba(0, 0, 0, 0.1);
4+
--bg-primary: #fafbfc;
5+
--bg-secondary: #f6f8fa;
6+
--bg-tertiary: #e1e4e8;
7+
--text-primary: #24292e;
8+
--text-secondary: #586069;
9+
--text-muted: #6a737d;
10+
--accent-primary: #0366d6;
11+
--accent-hover: #0256cc;
12+
--border-color: #e1e4e8;
13+
--code-bg: #f6f8fa;
14+
--shadow: rgba(27, 31, 35, 0.04);
1515

1616
/* Typography */
1717
--font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
@@ -265,6 +265,8 @@ a:hover {
265265
margin: var(--spacing-lg) 0;
266266
border-radius: var(--border-radius);
267267
overflow: hidden;
268+
border: 1px solid var(--border-color);
269+
box-shadow: 0 2px 4px var(--shadow);
268270
}
269271

270272
pre {
@@ -274,6 +276,7 @@ pre {
274276
font-family: var(--font-mono);
275277
font-size: 0.9rem;
276278
line-height: 1.4;
279+
margin: 0;
277280
}
278281

279282
code {

0 commit comments

Comments
 (0)