Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dark Mode: Update syntax file dark #2258

Merged
merged 2 commits into from
Sep 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 19 additions & 19 deletions site/assets/scss/_syntax.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,26 +27,26 @@
// TODO: these values will need to be modified in order to work with Boosted dark mode
// Right now, values are from Bootstrap from `--base00` to `--baseOF` and the 4 remaining one are copied from Boosted's light mode
@include color-mode(dark, true) {
// --base00: #282c34;
// --base01: #353b45;
--base02: #3e4451;
--base03: #868e96;
--base04: #868e96;
--base05: #abb2bf;
--base06: #b6bdca;
--base07: #{$orange-300}; // #d19a66
--base00: #{$gray-950};
--base01: #{$gray-500};
--base02: #{$teal-300};
--base03: #{$cyan-300};
--base04: #{$yellow-300};
--base05: #{$cyan-400};
--base06: #{$gray-400};
--base07: #{$pink-800};
--base08: #{$cyan-300};
--base09: #{$orange-300}; // #d19a66
--base0A: #{$yellow-200}; // #e5c07b
--base0B: #{$teal-300}; // #98c379
--base0C: #{$teal-300}; // #56b6c2
--base0D: #{$blue-300}; // #61afef
--base0E: #{$indigo-200}; // #c678dd
--base0F: #{$red-300}; // #be5046
--base10: #{$gray-400};
--base11: #{$yellow-800};
--base12: #{$cyan-900};
--base13: #{$pink-800};
--base09: #{$green-800};
louismaximepiton marked this conversation as resolved.
Show resolved Hide resolved
--base0A: #{$blue-200};
--base0B: #{$cyan-500};
--base0C: #{$orange-300};
--base0D: #{$purple-300};
--base0E: #{$teal-400};
--base0F: #{$white};
--base10: #{$gray-700};
--base11: #{$green-400};
--base12: #{$cyan-500};
--base13: #{$pink-500};
}

// From there this file was generated by running `hugo gen chromastyles > chroma.css` and modified in order to respect formatting rules
Expand Down