feat: initial solarized palette
This commit is contained in:
parent
d8913fbd5c
commit
4f8c39a5ec
4 changed files with 111 additions and 1 deletions
|
@ -13,7 +13,7 @@
|
|||
<link rel="shortcut icon" href="favicon.ico">
|
||||
|
||||
<!-- mon template.css -->
|
||||
<link rel="stylesheet" href="main.css" media="screen">
|
||||
<link rel="stylesheet" href="style.css" media="screen">
|
||||
|
||||
</head>
|
||||
|
||||
|
|
59
scss/_palette.scss
Normal file
59
scss/_palette.scss
Normal file
|
@ -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; }
|
||||
|
||||
|
16
scss/style.scss
Normal file
16
scss/style.scss
Normal file
|
@ -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';
|
35
style.css
Normal file
35
style.css
Normal file
|
@ -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; }
|
Loading…
Reference in a new issue