Skip to content

Commit

Permalink
copy theme file
Browse files Browse the repository at this point in the history
i know something didn't look right
  • Loading branch information
dragoncoder047 committed Sep 8, 2024
1 parent 550b8fc commit f3cdeb0
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ pelican:
./build.py

copy:
cp badlink_detector.js docs/badlink_detector.js
cp badlink_detector.js docs/
cp *.png docs/
cp theme.css docs/
30 changes: 30 additions & 0 deletions docs/theme.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
:root {
--color-bg: #eee;
--color-fg: #0a0a0a;
--black: white;
--white: black;
--lightgray: #888;
--darkgray: #444;
--theme-1-darker: #f60;
--theme-1: darkorange;
--theme-1-lighter: darkorange;
--theme-1-lightest: #fa4;
--theme-2-darker: blue;
--theme-2: #06f;
--theme-3: red;
--theme-3-darker: maroon;
--theme-4: lime;
--theme-4-darker: green;
--color-heading: var(--theme-2);
--color-link: var(--theme-2);
--color-link-visited: var(--theme-1);
--color-open-tab: var(--theme-3);
--color-footer: var(--darkgray);
--font-heading: "Computro Mono", monospace;
--font-body: "Open Sans", sans-serif;
--font-code: "Ubuntu Mono", monospace;
}

a.broken {
color: var(--theme-3);
}

0 comments on commit f3cdeb0

Please sign in to comment.