Skip to content

Commit 797be50

Browse files
committed
Merge pull request #6 from gyteng/master
Add a propert default header. Fix colors in code blocks. - Thanks @gyteng 😄.
2 parents 722357b + a24cfb9 commit 797be50

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed

sass/custom/_colors.scss

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -16,25 +16,25 @@
1616

1717

1818
/* To use the light Solarized highlighting theme uncomment the following line */
19-
//$solarized: light;
19+
$solarized: light;
2020

2121
/* If you want to tweak the Solarized colors you can do that here */
22-
//$base03: #002b36; //darkest blue
23-
//$base02: #073642; //dark blue
24-
//$base01: #586e75; //darkest gray
25-
//$base00: #657b83; //dark gray
26-
//$base0: #839496; //medium gray
27-
//$base1: #93a1a1; //medium light gray
28-
//$base2: #eee8d5; //cream
29-
//$base3: #fdf6e3; //white
30-
//$solar-yellow: #b58900;
31-
//$solar-orange: #cb4b16;
32-
//$solar-red: #dc322f;
33-
//$solar-magenta: #d33682;
34-
//$solar-violet: #6c71c4;
35-
//$solar-blue: #268bd2;
36-
//$solar-cyan: #2aa198;
37-
//$solar-green: #859900;
22+
$base03: #002b36; //darkest blue
23+
$base02: #073642; //dark blue
24+
$base01: #586e75; //darkest gray
25+
$base00: #657b83; //dark gray
26+
$base0: #839496; //medium gray
27+
$base1: #93a1a1; //medium light gray
28+
$base2: #eee8d5; //cream
29+
$base3: #fdf6e3; //white
30+
$solar-yellow: #b58900;
31+
$solar-orange: #cb4b16;
32+
$solar-red: #dc322f;
33+
$solar-magenta: #d33682;
34+
$solar-violet: #6c71c4;
35+
$solar-blue: #268bd2;
36+
$solar-cyan: #2aa198;
37+
$solar-green: #859900;
3838

3939

4040
/* Non highlighted code colors */

source/_includes/custom/header.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<hgroup>
2-
<h1><a href="{{ root_url }}/">{{ site.title }}</a></h1>
2+
<h1>{{ site.subtitle }}</h1>
33
{% if site.subtitle %}
4-
<h2>{{ site.subtitle }}</h2>
4+
<h2><a href="{{ root_url }}/">{{ site.title }}</a></h2>
55
{% endif %}
66
</hgroup>

0 commit comments

Comments
 (0)