Skip to content

Commit

Permalink
fix(#120): consistent border variables for light/dark
Browse files Browse the repository at this point in the history
  • Loading branch information
tuurep committed Aug 5, 2024
1 parent 07359a0 commit 0174490
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions static/colors.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
--text-link: #859abc;
--text-mark: #222;

--border-regular: #444; /* thin borders <1px */
--border-bold: #353535; /* thicker borders ≥1px */
--border-regular: #353535;
--border-muted: #303030;

--syntax-text: var(--text-primary);
--syntax-keyword: #aed7ff;
Expand Down Expand Up @@ -50,16 +50,16 @@
:root {
--bg-primary: white;
--bg-secondary: #f6f8fa;
--bg-code: #afb8c133;
--bg-code: #eff1f3;
--bg-mark: rgba(255, 255, 175, 1);

--text-primary: #1f2328;
--text-secondary: #656d76;
--text-link: #0969da;
--text-mark: var(--text-primary);

--border-regular: #d8dee4; /* thin borders <1px */
--border-bold: #d0d7de; /* thicker borders ≥1px */
--border-regular: #d0d7de;
--border-muted: #d8dee4;

/* source for light mode syntax theme:
* https://github.com/highlightjs/highlight.js/blob/main/src/styles/github.css
Expand Down

0 comments on commit 0174490

Please sign in to comment.