diff options
author | Valentin Popov <info@valentineus.link> | 2019-09-03 01:10:44 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2019-09-03 01:14:51 +0300 |
commit | 06fcc9244c47e5afbfa9967dc378788ac4bde24b (patch) | |
tree | c16ae7469d1e5716b41e441867c13b6e48c1b868 | |
parent | f5db4187c23d363c6f22330b9f1e52c6f75b62dd (diff) | |
download | popov.link-06fcc9244c47e5afbfa9967dc378788ac4bde24b.tar.xz popov.link-06fcc9244c47e5afbfa9967dc378788ac4bde24b.zip |
Added a white theme
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r-- | _scss/base/_sakura.scss | 10 | ||||
-rw-r--r-- | _scss/components/_core.scss | 1 | ||||
-rw-r--r-- | assets/background.svg | 14 |
3 files changed, 5 insertions, 20 deletions
diff --git a/_scss/base/_sakura.scss b/_scss/base/_sakura.scss index 1e4f4ca..cdc2fe4 100644 --- a/_scss/base/_sakura.scss +++ b/_scss/base/_sakura.scss @@ -1,9 +1,9 @@ $color-bg-alt: rgba(0, 0, 0, .09); -$color-bg: rgb(49, 49, 49); -$color-blossom: rgb(253, 112, 19); -$color-fade: rgb(238, 238, 238); -$color-html:rgb(65, 65, 65); -$color-text: rgb(245, 245, 245); +$color-bg: rgb(255, 255, 255); +$color-blossom:rgb(0, 51, 153); +$color-fade: rgb(51, 102, 204); +$color-html:rgb(255, 255, 255); +$color-text: rgb(0, 0, 0); $font-family-sans-serif: '-apple-system', BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 'Arial', sans-serif; $font-size-base: 1.6rem; diff --git a/_scss/components/_core.scss b/_scss/components/_core.scss index 497b226..06e97cf 100644 --- a/_scss/components/_core.scss +++ b/_scss/components/_core.scss @@ -9,7 +9,6 @@ html { background-color: $color-html; - background-image: url('/assets/background.svg'); height: 100%; overflow-y: scroll; } diff --git a/assets/background.svg b/assets/background.svg deleted file mode 100644 index 949a60a..0000000 --- a/assets/background.svg +++ /dev/null @@ -1,14 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg width="6px" height="6px" viewBox="0 0 6 6" version="1.1" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink"> - <title>Background</title> - <desc>It's the background.</desc> - <defs></defs> - <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"> - <g fill="#000000"> - <polygon points="5 0 6 0 0 6 0 5"></polygon> - <polygon points="6 5 6 6 5 6"></polygon> - </g> - </g> -</svg> |