forked from yousinix/portfolYOU
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixes yousinix#8
- Loading branch information
Showing
14 changed files
with
189 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,8 +24,9 @@ | |
<!-- Font Awesome CDN --> | ||
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.10.0/css/all.css"> | ||
|
||
<!-- Bootstrap CSS CDN --> | ||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"> | ||
<!-- Bootstrap-dark CSS CDN --> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@forevolve/[email protected]/dist/css/toggle-bootstrap.min.css" /> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@forevolve/[email protected]/dist/css/toggle-bootstrap-dark.min.css" /> | ||
|
||
<!-- Animate CSS CDN --> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.css" type="text/css"/> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
// Some overrides for dark theme | ||
|
||
@mixin theme($property, $light-value, $dark-value) { | ||
.bootstrap & { | ||
#{$property}: $light-value; | ||
} | ||
|
||
.bootstrap-dark & { | ||
#{$property}: $dark-value; | ||
} | ||
} | ||
|
||
// Colors | ||
|
||
.text-themed { | ||
@include theme(color, $text-black, $text-white); | ||
} | ||
|
||
.bg-themed { | ||
@include theme(background-color, $light, $dark); | ||
} | ||
|
||
.bg-light { | ||
& * { | ||
color: $text-black; | ||
} | ||
} | ||
|
||
.bg-dark { | ||
& * { | ||
color: $text-white; | ||
} | ||
} | ||
|
||
// Code blocks & Syntax highlighting | ||
|
||
.bootstrap { | ||
@import "autumn.scss"; | ||
} | ||
|
||
.bootstrap-dark { | ||
@import "native.scss"; | ||
|
||
.gist { | ||
filter: invert(90%) hue-rotate(180deg); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
// Syntax highlighting for code blocks (dark) | ||
// Get it from here https://github.com/richleland/pygments-css | ||
|
||
.highlight .hll { background-color: #404040 } | ||
.highlight { background: #202020; color: #d0d0d0 } | ||
.highlight .c { color: #999999; font-style: italic } /* Comment */ | ||
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */ | ||
.highlight .esc { color: #d0d0d0 } /* Escape */ | ||
.highlight .g { color: #d0d0d0 } /* Generic */ | ||
.highlight .k { color: #6ab825; font-weight: bold } /* Keyword */ | ||
.highlight .l { color: #d0d0d0 } /* Literal */ | ||
.highlight .n { color: #d0d0d0 } /* Name */ | ||
.highlight .o { color: #d0d0d0 } /* Operator */ | ||
.highlight .x { color: #d0d0d0 } /* Other */ | ||
.highlight .p { color: #d0d0d0 } /* Punctuation */ | ||
.highlight .ch { color: #999999; font-style: italic } /* Comment.Hashbang */ | ||
.highlight .cm { color: #999999; font-style: italic } /* Comment.Multiline */ | ||
.highlight .cp { color: #cd2828; font-weight: bold } /* Comment.Preproc */ | ||
.highlight .cpf { color: #999999; font-style: italic } /* Comment.PreprocFile */ | ||
.highlight .c1 { color: #999999; font-style: italic } /* Comment.Single */ | ||
.highlight .cs { color: #e50808; font-weight: bold; background-color: #520000 } /* Comment.Special */ | ||
.highlight .gd { color: #d22323 } /* Generic.Deleted */ | ||
.highlight .ge { color: #d0d0d0; font-style: italic } /* Generic.Emph */ | ||
.highlight .gr { color: #d22323 } /* Generic.Error */ | ||
.highlight .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */ | ||
.highlight .gi { color: #589819 } /* Generic.Inserted */ | ||
.highlight .go { color: #cccccc } /* Generic.Output */ | ||
.highlight .gp { color: #aaaaaa } /* Generic.Prompt */ | ||
.highlight .gs { color: #d0d0d0; font-weight: bold } /* Generic.Strong */ | ||
.highlight .gu { color: #ffffff; text-decoration: underline } /* Generic.Subheading */ | ||
.highlight .gt { color: #d22323 } /* Generic.Traceback */ | ||
.highlight .kc { color: #6ab825; font-weight: bold } /* Keyword.Constant */ | ||
.highlight .kd { color: #6ab825; font-weight: bold } /* Keyword.Declaration */ | ||
.highlight .kn { color: #6ab825; font-weight: bold } /* Keyword.Namespace */ | ||
.highlight .kp { color: #6ab825 } /* Keyword.Pseudo */ | ||
.highlight .kr { color: #6ab825; font-weight: bold } /* Keyword.Reserved */ | ||
.highlight .kt { color: #6ab825; font-weight: bold } /* Keyword.Type */ | ||
.highlight .ld { color: #d0d0d0 } /* Literal.Date */ | ||
.highlight .m { color: #3677a9 } /* Literal.Number */ | ||
.highlight .s { color: #ed9d13 } /* Literal.String */ | ||
.highlight .na { color: #bbbbbb } /* Name.Attribute */ | ||
.highlight .nb { color: #24909d } /* Name.Builtin */ | ||
.highlight .nc { color: #447fcf; text-decoration: underline } /* Name.Class */ | ||
.highlight .no { color: #40ffff } /* Name.Constant */ | ||
.highlight .nd { color: #ffa500 } /* Name.Decorator */ | ||
.highlight .ni { color: #d0d0d0 } /* Name.Entity */ | ||
.highlight .ne { color: #bbbbbb } /* Name.Exception */ | ||
.highlight .nf { color: #447fcf } /* Name.Function */ | ||
.highlight .nl { color: #d0d0d0 } /* Name.Label */ | ||
.highlight .nn { color: #447fcf; text-decoration: underline } /* Name.Namespace */ | ||
.highlight .nx { color: #d0d0d0 } /* Name.Other */ | ||
.highlight .py { color: #d0d0d0 } /* Name.Property */ | ||
.highlight .nt { color: #6ab825; font-weight: bold } /* Name.Tag */ | ||
.highlight .nv { color: #40ffff } /* Name.Variable */ | ||
.highlight .ow { color: #6ab825; font-weight: bold } /* Operator.Word */ | ||
.highlight .w { color: #666666 } /* Text.Whitespace */ | ||
.highlight .mb { color: #3677a9 } /* Literal.Number.Bin */ | ||
.highlight .mf { color: #3677a9 } /* Literal.Number.Float */ | ||
.highlight .mh { color: #3677a9 } /* Literal.Number.Hex */ | ||
.highlight .mi { color: #3677a9 } /* Literal.Number.Integer */ | ||
.highlight .mo { color: #3677a9 } /* Literal.Number.Oct */ | ||
.highlight .sa { color: #ed9d13 } /* Literal.String.Affix */ | ||
.highlight .sb { color: #ed9d13 } /* Literal.String.Backtick */ | ||
.highlight .sc { color: #ed9d13 } /* Literal.String.Char */ | ||
.highlight .dl { color: #ed9d13 } /* Literal.String.Delimiter */ | ||
.highlight .sd { color: #ed9d13 } /* Literal.String.Doc */ | ||
.highlight .s2 { color: #ed9d13 } /* Literal.String.Double */ | ||
.highlight .se { color: #ed9d13 } /* Literal.String.Escape */ | ||
.highlight .sh { color: #ed9d13 } /* Literal.String.Heredoc */ | ||
.highlight .si { color: #ed9d13 } /* Literal.String.Interpol */ | ||
.highlight .sx { color: #ffa500 } /* Literal.String.Other */ | ||
.highlight .sr { color: #ed9d13 } /* Literal.String.Regex */ | ||
.highlight .s1 { color: #ed9d13 } /* Literal.String.Single */ | ||
.highlight .ss { color: #ed9d13 } /* Literal.String.Symbol */ | ||
.highlight .bp { color: #24909d } /* Name.Builtin.Pseudo */ | ||
.highlight .fm { color: #447fcf } /* Name.Function.Magic */ | ||
.highlight .vc { color: #40ffff } /* Name.Variable.Class */ | ||
.highlight .vg { color: #40ffff } /* Name.Variable.Global */ | ||
.highlight .vi { color: #40ffff } /* Name.Variable.Instance */ | ||
.highlight .vm { color: #40ffff } /* Name.Variable.Magic */ | ||
.highlight .il { color: #3677a9 } /* Literal.Number.Integer.Long */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
const LOCAL_STORAGE_KEY = "dark-mode"; | ||
let isDark = localStorage.getItem(LOCAL_STORAGE_KEY) === "true"; | ||
loadTheme(); | ||
|
||
function toggleTheme() { | ||
isDark = !isDark; | ||
loadTheme(); | ||
localStorage.setItem(LOCAL_STORAGE_KEY, isDark); | ||
} | ||
|
||
function loadTheme() { | ||
const THEME_TOGGLER = document.getElementById("theme-toggler"); | ||
const BODY = document.getElementsByTagName("BODY")[0]; | ||
|
||
if (isDark) { | ||
BODY.classList.remove("bootstrap"); | ||
BODY.classList.add("bootstrap-dark"); | ||
THEME_TOGGLER.innerHTML = "π"; | ||
} else { | ||
BODY.classList.remove("bootstrap-dark"); | ||
BODY.classList.add("bootstrap"); | ||
THEME_TOGGLER.innerHTML = "π"; | ||
} | ||
} |