Skip to content

Commit

Permalink
Add Purple theme
Browse files Browse the repository at this point in the history
  • Loading branch information
nikdoof committed Apr 3, 2024
1 parent c4f8af6 commit a248c80
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
3 changes: 3 additions & 0 deletions config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ shortcode = "DC"
[[params.styles]]
name = "nord"
shortcode = "ND"
[[params.styles]]
name = "purple"
shortcode = "PU"

[[params.links]]
name = "HOME"
Expand Down
46 changes: 46 additions & 0 deletions themes/dimension/static/css/purple.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
:root {
--base00: #001100;
--base01: #181147;
--base02: #3c3573;
--base03: #8575fb;
--base05: #8575fb;
--base07: #a296ff;
}

html, body, tr, td {
background-color: var(--base00);
color: var(--base05);
}

b, strong, a, a:link, a:visited, a:active, h1, h2, h3, h4, h5, label {
color: var(--base07);
}

div#logo pre {
color: var(--base05);
text-shadow: 0 0 20px var(--base03), 0 0 30px var(--base03), 0 0 40px var(--base03), 0 0 55px var(--base03), 0 0 75px var(--base03);
}

a:hover {
color: var(--base05);
}

hr, div.bar {
background: var(--base02);
color: var(--base05);
box-shadow: 2px 2px var(--base01);
}

h1, h2, h3, h4, h5, th, label {
text-shadow: 2px 2px var(--base02);
}

input, textarea {
background-color: var(--base00);
color: var(--base05);
border: 1px solid var(--base03);
}

table, div#body pre {
border: 1px solid var(--base03);
}

0 comments on commit a248c80

Please sign in to comment.