diff --git a/index.html b/index.html index 4dae798..ff7f6ae 100644 --- a/index.html +++ b/index.html @@ -13,7 +13,7 @@ - + diff --git a/scss/_palette.scss b/scss/_palette.scss new file mode 100644 index 0000000..b1638e9 --- /dev/null +++ b/scss/_palette.scss @@ -0,0 +1,59 @@ +/* + * 1 - Global colors styling + * + * This part of the (s)css handle the colors of the page. + * +*/ + +$color-dark1: #002b36; +$color-dark2: #073642; + +$color-gray1: #586e75; +$color-gray2: #657b83; +$color-gray3: #839496; +$color-gray4: #93a1a1; + +$color-light1: #eee8d5; +$color-light2: #fdf6e3; + +$color-blue: #268bd2; +$color-magenta: #d33682; +$color-red: #dc322f; +$color-orange: #cb4b16; +$color-violet: #6c71c4; +$color-yellow: #b58900; +$color-cyan: #2aa198; +$color-green: #859900; + +$color-primary: $color-cyan; +$color-secondary: $color-magenta; + +$color-warning: $color-orange; +$color-danger: $color-red; +$color-info: $color-cyan; +$color-success: $color-green; + +$color-link: $color-blue; +$color-selection: $color-blue; +$color-mark: $color-yellow; + +$color-category: $color-primary; +$color-tag: $color-secondary; + +$color-font: $color-dark2; +$color-back: $color-light2; + +body { + background-color: $color-back; + color:$color-font; +} + +a { + color:$color-link; + text-decoration:none; +} + +::selection { background: $color-selection; color: $color-light2; } +::-moz-selection { background: $color-selection; color: $color-light2; } + + diff --git a/scss/style.scss b/scss/style.scss new file mode 100644 index 0000000..ec627f8 --- /dev/null +++ b/scss/style.scss @@ -0,0 +1,16 @@ +/* + Theme Name: Kazhnuz Space + Theme URI: + Author: Kazhnuz + Author URI: https://kazhnuz.space + Description: The default theme for Kazhnuz Space, my art blog + Version: 0.1 + License: GNU General Public License v2 or later + License URI: http://www.gnu.org/licenses/gpl-2.0.html + Tags: blog, two-columns, right-sidebar, magazine + Text Domain: kazhnuz-space-theme + + This theme is licensed under the GPLv3. +*/ + +@import 'palette'; diff --git a/style.css b/style.css new file mode 100644 index 0000000..773283b --- /dev/null +++ b/style.css @@ -0,0 +1,35 @@ +/* + Theme Name: Kazhnuz Space + Theme URI: + Author: Kazhnuz + Author URI: https://kazhnuz.space + Description: The default theme for Kazhnuz Space, my art blog + Version: 0.1 + License: GNU General Public License v2 or later + License URI: http://www.gnu.org/licenses/gpl-2.0.html + Tags: blog, two-columns, right-sidebar, magazine + Text Domain: kazhnuz-space-theme + + This theme is licensed under the GPLv3. +*/ +/* + * 1 - Global colors styling + * + * This part of the (s)css handle the colors of the page. + * +*/ +body { + background-color: #fdf6e3; + color: #073642; } + +a { + color: #268bd2; + text-decoration: none; } + +::selection { + background: #268bd2; + color: #fdf6e3; } + +::-moz-selection { + background: #268bd2; + color: #fdf6e3; }