From a7998e48af0e41acd0d84445f225c602ec544dc6 Mon Sep 17 00:00:00 2001 From: Daniel Kluge Date: Sun, 16 Oct 2022 00:07:02 +0200 Subject: [PATCH] repl-color -> repl_color --- lib/colors.ts | 12 ++++++------ lib/commands/definitions.ts | 6 +++--- pages/terminal.tsx | 10 +++++----- styles/Spinner.module.scss | 2 +- styles/Terminal/ProjectModal.module.css | 10 +++++----- styles/Terminal/REPL/REPLComplete.module.css | 2 +- styles/Terminal/REPL/REPLHistory.module.css | 6 +++--- styles/Terminal/REPL/REPLInput.module.css | 6 +++--- styles/Terminal/Terminal.module.css | 10 +++++----- styles/Terminal/customAsciidoc.module.scss | 6 +++--- styles/globals.scss | 6 +++--- 11 files changed, 38 insertions(+), 38 deletions(-) diff --git a/lib/colors.ts b/lib/colors.ts index 760a32e..8bcb00a 100644 --- a/lib/colors.ts +++ b/lib/colors.ts @@ -1,16 +1,16 @@ import Color from "color"; export function getColors() { - const replColor = window.document.documentElement.style.getPropertyValue("--repl-color") || window.getComputedStyle(document.documentElement).getPropertyValue("--repl-color") || "rgb(24, 138, 24)"; - const linkColor = window.document.documentElement.style.getPropertyValue("--repl-color-link") || window.getComputedStyle(document.documentElement).getPropertyValue("--repl-color-link") || "rgb(31, 179, 31)"; - const hintColor = window.document.documentElement.style.getPropertyValue("--repl-color-hint") || window.getComputedStyle(document.documentElement).getPropertyValue("--repl-color-hint") || "rgba(24, 138, 24, 0.3)"; + const replColor = window.document.documentElement.style.getPropertyValue("--repl_color") || window.getComputedStyle(document.documentElement).getPropertyValue("--repl_color") || "rgb(24, 138, 24)"; + const linkColor = window.document.documentElement.style.getPropertyValue("--repl_color-link") || window.getComputedStyle(document.documentElement).getPropertyValue("--repl_color-link") || "rgb(31, 179, 31)"; + const hintColor = window.document.documentElement.style.getPropertyValue("--repl_color-hint") || window.getComputedStyle(document.documentElement).getPropertyValue("--repl_color-hint") || "rgba(24, 138, 24, 0.3)"; return [replColor, linkColor, hintColor]; }; export function setColors(color: Color) { - window?.document.documentElement.style.setProperty("--repl-color", color.string()); - window?.document.documentElement.style.setProperty("--repl-color-link", color.lighten(0.3).rgb().string()); - window?.document.documentElement.style.setProperty("--repl-color-hint", color.fade(0.7).string()); + window?.document.documentElement.style.setProperty("--repl_color", color.string()); + window?.document.documentElement.style.setProperty("--repl_color-link", color.lighten(0.3).rgb().string()); + window?.document.documentElement.style.setProperty("--repl_color-hint", color.fade(0.7).string()); }; export class Rainbow { diff --git a/lib/commands/definitions.ts b/lib/commands/definitions.ts index 2eea758..bd022c1 100644 --- a/lib/commands/definitions.ts +++ b/lib/commands/definitions.ts @@ -260,9 +260,9 @@ const color: Command = { } if (args[0] === "reset") { Rainbow.stop(); - window.document.documentElement.style.removeProperty("--repl-color"); - window.document.documentElement.style.removeProperty("--repl-color-link"); - window.document.documentElement.style.removeProperty("--repl-color-hint"); + window.document.documentElement.style.removeProperty("--repl_color"); + window.document.documentElement.style.removeProperty("--repl_color-link"); + window.document.documentElement.style.removeProperty("--repl_color-hint"); return ["Color reset."]; } else { let color: Color; diff --git a/pages/terminal.tsx b/pages/terminal.tsx index d6f10b9..f1d0c9b 100644 --- a/pages/terminal.tsx +++ b/pages/terminal.tsx @@ -61,17 +61,17 @@ const Home: NextPage<{ buildTime: string }> = ({ buildTime }) => { | Bug? | - + | - + | - + | - + | - + C0ntroller_Z#3883 diff --git a/styles/Spinner.module.scss b/styles/Spinner.module.scss index aa86132..f87ceef 100644 --- a/styles/Spinner.module.scss +++ b/styles/Spinner.module.scss @@ -1,5 +1,5 @@ .spinnerPath { - stroke: var(--repl-color); + stroke: var(--repl_color); stroke-width: 25; fill: none; } diff --git a/styles/Terminal/ProjectModal.module.css b/styles/Terminal/ProjectModal.module.css index 1cca551..a18b5bd 100644 --- a/styles/Terminal/ProjectModal.module.css +++ b/styles/Terminal/ProjectModal.module.css @@ -75,7 +75,7 @@ /* Firefox */ .modalContainer { scrollbar-width: auto; - scrollbar-color: var(--repl-color, #188a18) var(--modal-gray, #0e0f0e); + scrollbar-color: var(--repl_color, #188a18) var(--modal-gray, #0e0f0e); } /* Chrome, Edge, and Safari */ @@ -90,7 +90,7 @@ } .modalContainer::-webkit-scrollbar-thumb { - background-color: var(--repl-color, #188a18); + background-color: var(--repl_color, #188a18); border-radius: 20px; border: none; } @@ -107,12 +107,12 @@ .pageSelector select { background: var(--modal-gray); /* Transparent does not work for the dropdown */ - color: var(--repl-color-link); + color: var(--repl_color-link); font-size: 1rem; } .pageSelector a:link, .pageSelector a:visited, .pageSelector a:hover, .pageSelector a:active { - color: var(--repl-color-link); + color: var(--repl_color-link); text-decoration: none; } @@ -145,7 +145,7 @@ } .fakeLink { - color: var(--repl-color-link); + color: var(--repl_color-link); text-decoration: none; cursor: pointer; } diff --git a/styles/Terminal/REPL/REPLComplete.module.css b/styles/Terminal/REPL/REPLComplete.module.css index a85b2d6..71236b9 100644 --- a/styles/Terminal/REPL/REPLComplete.module.css +++ b/styles/Terminal/REPL/REPLComplete.module.css @@ -14,5 +14,5 @@ } .container::-webkit-scrollbar-thumb { - background: var(--repl-color); + background: var(--repl_color); } \ No newline at end of file diff --git a/styles/Terminal/REPL/REPLHistory.module.css b/styles/Terminal/REPL/REPLHistory.module.css index ebaa18f..286c2f1 100644 --- a/styles/Terminal/REPL/REPLHistory.module.css +++ b/styles/Terminal/REPL/REPLHistory.module.css @@ -15,13 +15,13 @@ } .line a:link, .line a:visited, .line a:hover, .line a:active { - color: var(--repl-color-link); + color: var(--repl_color-link); text-decoration: underline; } .line a::after { content: "⤤"; - color: var(--repl-color-link); + color: var(--repl_color-link); font-size: 80%; text-decoration: none; } @@ -29,7 +29,7 @@ .line .cmd { cursor: pointer; text-decoration: underline dotted; - color: var(--repl-color-link); + color: var(--repl_color-link); } .line .cmd::before {content: "'"} diff --git a/styles/Terminal/REPL/REPLInput.module.css b/styles/Terminal/REPL/REPLInput.module.css index ab09f38..4c19c7e 100644 --- a/styles/Terminal/REPL/REPLInput.module.css +++ b/styles/Terminal/REPL/REPLInput.module.css @@ -5,7 +5,7 @@ display: flex; flex-direction: row; flex-wrap: nowrap; - color: var(--repl-color); + color: var(--repl_color); } .wrapper { @@ -32,7 +32,7 @@ background: transparent; width: 100%; appearance: none !important; - caret-color: var(--repl-color); + caret-color: var(--repl_color); outline: none; } @@ -64,6 +64,6 @@ } .completion { - color: var(--repl-color-hint); + color: var(--repl_color-hint); flex-grow: 1; } diff --git a/styles/Terminal/Terminal.module.css b/styles/Terminal/Terminal.module.css index 1bbb40c..c801599 100644 --- a/styles/Terminal/Terminal.module.css +++ b/styles/Terminal/Terminal.module.css @@ -4,7 +4,7 @@ height: 100vh; margin: 0; padding: 2px 10px 10px 10px; - color: var(--repl-color); + color: var(--repl_color); background: #000; } @@ -25,17 +25,17 @@ .header a:active, .header a:visited, .header a { - color: var(--repl-color); + color: var(--repl_color); text-decoration: underline; font-size: 0.9em; } .header a:hover { - color: var(--repl-color-link); + color: var(--repl_color-link); } .header .divider { - color: var(--repl-color); + color: var(--repl_color); margin: 0 5px; font-size: 1.1em; } @@ -59,7 +59,7 @@ visibility: hidden; width: 140px; background-color: #333; - color: var(--repl-color); + color: var(--repl_color); text-align: center; border-radius: 6px; padding: 5px 0; diff --git a/styles/Terminal/customAsciidoc.module.scss b/styles/Terminal/customAsciidoc.module.scss index ac55c84..4f0f008 100644 --- a/styles/Terminal/customAsciidoc.module.scss +++ b/styles/Terminal/customAsciidoc.module.scss @@ -5,7 +5,7 @@ @import "~highlight.js/scss/atom-one-dark"; h1 { - color: var(--repl-color-link, #2ac02a); + color: var(--repl_color-link, #2ac02a); font-size: 2em; } @@ -30,7 +30,7 @@ h4, h5, h6 { - color: var(--repl-color, #188a18); + color: var(--repl_color, #188a18); } #preamble { @@ -53,7 +53,7 @@ pre { background-color: #282c34; - border: 1px solid var(--repl-color-hint, #188a18); + border: 1px solid var(--repl_color-hint, #188a18); padding: 1em; color: #abb2bf; } diff --git a/styles/globals.scss b/styles/globals.scss index 190d677..e4143d9 100644 --- a/styles/globals.scss +++ b/styles/globals.scss @@ -8,9 +8,9 @@ } :root { - --repl-color: rgb(24, 138, 24); - --repl-color-link: rgb(31, 179, 31); - --repl-color-hint: rgba(24, 138, 24, 0.3); + --repl_color: rgb(24, 138, 24); + --repl_color-link: rgb(31, 179, 31); + --repl_color-hint: rgba(24, 138, 24, 0.3); --blog_nav-background: rgba(128, 128, 128, 0.3);