Skip to content

Commit

Permalink
Blast and lair themes
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Dunn committed Nov 9, 2023
1 parent 9a5b608 commit 569250e
Show file tree
Hide file tree
Showing 4 changed files with 91 additions and 0 deletions.
49 changes: 49 additions & 0 deletions css/blast.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
:root {
color-scheme: light dark;
--black-1: #1c1c1c;
--black-2: #343A40;
--black-3: #545862;
--black-4: #5C555D;
--grey-1: #e5e4e1;
--grey-2: #ffffff;
--grey-3: #ffffff;
--red: #ff0000;
--yellow: #fff900;
--green: rgb(0 255 0);
--teal: rgb(0 237 255);
--blue: rgb(0 62 255);
--purple: rgb(255 0 178);
--dark-blue: rgb(0 46 191);
--fg: #620d0d;
--graphical-fg: #00188d;
--accent-color: rgb(0 255 42);
--bg: #2c9f43;
--box-bg: #622fb0;
--highlight-opacity: 25%;
--main-font: sans-serif;
--padding: 2px;
--gap: 2px;
--border-color: #00ffe6;
--border-radius: 1.2rem;
--border-width: 1px;
--control-height: 28px;
--control-border-radius: 12px;
--control-border-width: 1px;
--3d-highlight: #dc7d09;
--3d-shadow: #ffd744;
--concave-item-bg: linear-gradient(180deg, var(--3d-shadow) 12%, var(--3d-highlight) 88%);
--convex-item-bg: linear-gradient(180deg, var(--3d-highlight) 0%, var(--3d-shadow) 96%);
--convex-item-active-bg: var(--concave-item-bg);
--concave-item-box-shadow: inset 0px 0px 4px 2px #3838381f;
--control-bg: #ffc400;
--control-fg: #412600;
--highlight-color: var(--teal);
--success-color: var(--green);
--warning-color: var(--yellow);
--danger-color: var(--red);
--success-fg: color-mix(in srgb, var(--success-color) 60%, var(--fg));
--warning-fg: color-mix(in srgb, var(--warning-color) 40%, var(--fg));
--danger-fg: color-mix(in srgb, var(--danger-color) 70%, var(--fg));
--control-border-color: color-mix(in srgb, var(--graphical-fg) 35%, rgb(0 0 0 / 0%));
--thin-border: 1px solid var(--border-color);
}
2 changes: 2 additions & 0 deletions css/fugit/fugit.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
:root {
color-scheme: dark;
--phosphor-color: #ffd477;
--highlight-color: #ffd477;

--tool-bar-element-border: var(--phosphor-color) solid 1px;
--concave-item-bg: rgba(0, 0, 0, 0.0);
--convex-item-bg: rgba(0, 0, 0, 0.0);
Expand Down
36 changes: 36 additions & 0 deletions css/lair.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
:root {
color-scheme: light dark;
--red: red;
--fg: #e72323;
--graphical-fg: #aaadbc;
--accent-color: rgb(182 83 0);
--bg: #49011c;
--box-bg: #2e2424;
--highlight-opacity: 25%;
--main-font: sans-serif;
--padding: 2px;
--gap: 2px;
--border-color: #785073;
--border-radius: 0rem;
--border-width: 1px;
--control-height: 28px;
--control-border-radius: 0px;
--control-border-width: 1px;
--3d-highlight: #9d0016;
--3d-shadow: #5c3c3c;
--concave-item-bg: linear-gradient(180deg, var(--3d-shadow) 12%, var(--3d-highlight) 88%);
--convex-item-bg: linear-gradient(180deg, var(--3d-highlight) 0%, var(--3d-shadow) 96%);
--convex-item-active-bg: var(--concave-item-bg);
--concave-item-box-shadow: inset 0px 0px 4px 2px #3838381f;
--control-bg: #560049;
--control-fg: #ba9c7f;
--highlight-color: var(--teal);
--success-color: var(--green);
--warning-color: var(--yellow);
--danger-color: var(--red);
--success-fg: color-mix(in srgb, var(--success-color) 60%, var(--fg));
--warning-fg: color-mix(in srgb, var(--warning-color) 40%, var(--fg));
--danger-fg: color-mix(in srgb, var(--danger-color) 70%, var(--fg));
--control-border-color: color-mix(in srgb, var(--graphical-fg) 35%, rgb(0 0 0 / 0%));
--thin-border: 1px solid var(--border-color);
}
4 changes: 4 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ <h3>Theme Chooser</h3>
<button onclick="document.getElementById('theme_css').href = 'css/scrapbook/scrapbook_green.css';">Scrapbook
Green</button>
<button onclick="document.getElementById('theme_css').href = 'css/nord.css';">Nord</button>
<button onclick="document.getElementById('theme_css').href = 'css/blast.css';">Blast</button>
<button onclick="document.getElementById('theme_css').href = 'css/lair.css';">Lair</button>


</div>
<p>Please note: Nord is an adaptation of the Nord Theme, which is MIT licensed, not public domain.</p>

Expand Down

0 comments on commit 569250e

Please sign in to comment.