mirror of
https://github.com/dillonzq/LoveIt.git
synced 2024-11-15 03:16:30 +01:00
122 lines
2.8 KiB
SCSS
122 lines
2.8 KiB
SCSS
/** light theme **/
|
|
|
|
$light-background-color: #fff;
|
|
|
|
$light-font-color: #161209;
|
|
$light-font-secondary-color: #a9a9b3;
|
|
|
|
$light-navbar-active-color: #161209;
|
|
|
|
$light-global-link-color: #161209;
|
|
$light-global-link-hover-color:#2d96bd;
|
|
|
|
$light-post-link-color: #2d96bd;
|
|
$light-post-link-hover-color:#ef3982;
|
|
|
|
$light-pagination-link-color : #2d96bd;
|
|
$light-pagination-link-active-color: #000;
|
|
|
|
$light-border-color: #dcdcdc;
|
|
|
|
/** dark theme **/
|
|
|
|
$dark-background-color: #292a2d;
|
|
|
|
$dark-font-color: #a9a9b3;
|
|
$dark-font-secondary-color: #87878d;
|
|
|
|
$dark-navbar-active-color: #fff;
|
|
|
|
$dark-global-link-color: #a9a9b3;
|
|
$dark-global-link-hover-color:#fff;
|
|
|
|
$dark-post-link-color: #eee;
|
|
$dark-post-link-hover-color:#fff;
|
|
|
|
$dark-pagination-link-color : #a9a9b3;
|
|
$dark-pagination-link-active-color: #fff;
|
|
|
|
$dark-border-color: #4a4b50;
|
|
|
|
// ========== Color ========== //
|
|
$black: #0a0a0a !default;
|
|
$white: #fefefe !default;
|
|
$light-gray: #e6e6e6 !default;
|
|
$gray: #cacaca !default;
|
|
$dark-gray: #8a8a8a !default;
|
|
|
|
// ========== Code ========== //
|
|
// Color of the code.
|
|
$l-code-color: #E74C3C !default;
|
|
$d-code-color: #E5BF78 !default;
|
|
|
|
// Font size of code.
|
|
$code-font-size: 13px !default;
|
|
|
|
// Font family of the code.
|
|
$code-font-family: Consolas, Monaco, Menlo, "DejaVu Sans Mono",
|
|
"Bitstream Vera Sans Mono", "Courier New", monospace !default;
|
|
|
|
// Color of code highlight, solarized.
|
|
$code-highlight-color: (
|
|
comment: #93a1a1,
|
|
keyword: #859900,
|
|
number: #2aa198,
|
|
title: #268bd2,
|
|
attribute: #b58900,
|
|
symbol: #cb4b16,
|
|
built_in: #dc322f,
|
|
formula: #eee8d5
|
|
) !default;
|
|
|
|
// Code type list.
|
|
$code-type-list: (
|
|
// Custom code type
|
|
language-bash: "Bash",
|
|
language-c: "C",
|
|
language-cs: "C#",
|
|
language-cpp: "C++",
|
|
language-css: "CSS",
|
|
language-coffeescript: "CoffeeScript",
|
|
language-html: "HTML",
|
|
language-xml: "XML",
|
|
language-http: "HTTP",
|
|
language-json: "JSON",
|
|
language-java: "Java",
|
|
language-js: "JavaScript",
|
|
language-javascript: "JavaScript",
|
|
language-makefile: "Makefile",
|
|
language-markdown: "Markdown",
|
|
language-objectivec: "Objective-C",
|
|
language-php: "PHP",
|
|
language-perl: "Perl",
|
|
language-python: "Python",
|
|
language-ruby: "Ruby",
|
|
language-sql: "SQL",
|
|
language-shell: "Shell",
|
|
|
|
language-erlang: "Erlang",
|
|
language-go: "Go",
|
|
language-go-html-template: "Go HTML Template",
|
|
language-groovy: "Groovy",
|
|
language-haskell: "Haskell",
|
|
language-kotlin: "Kotlin",
|
|
language-clojure: "Clojure",
|
|
language-less: "Less",
|
|
language-lisp: "Lisp",
|
|
language-lua: "Lua",
|
|
language-matlab: "Matlab",
|
|
language-rust: "Rust",
|
|
language-scss: "Scss",
|
|
language-scala: "Scala",
|
|
language-swift: "Swift",
|
|
language-typescript: "TypeScript",
|
|
language-yml: "YAML",
|
|
language-yaml: "YAML",
|
|
language-toml: "TOML",
|
|
language-diff: "Diff"
|
|
) !default;
|
|
|
|
// Color of the code background.
|
|
$l-code-background: #F8F5EC !default;
|
|
$d-code-background: #272C34 !default;
|