Browse code

improved the default options and instructions on custom/_colors.scss

Brandon Mathis authored on 26/07/2011 at 16:32:43
Showing 1 changed files
... ...
@@ -1,5 +1,6 @@
1 1
 // Here you can easily change your sites's color scheme.
2 2
 // To give it a try, uncomment some of the lines below rebuild your blog, and see how it works.
3
+// If you need a handy color picker try http://hslpicker.com
3 4
 
4 5
 //$header-bg: #263347;
5 6
 //$subtitle-color: lighten($header-bg, 58);
... ...
@@ -9,5 +10,29 @@
9 9
 //$sidebar-link-color-hover: darken(#7ab662, 9);
10 10
 
11 11
 
12
-//To use the light Solarized highlighting theme uncomment the following line
12
+/* To use the light Solarized highlighting theme uncomment the following line */
13 13
 //$solarized: light
14
+
15
+/* If you want to tweak the Solarized colors you can do that here */
16
+//$base03:          #002b36; //darkest blue
17
+//$base02:          #073642; //dark blue
18
+//$base01:          #586e75; //darkest gray
19
+//$base00:          #657b83; //dark gray
20
+//$base0:           #839496; //medium gray
21
+//$base1:           #93a1a1; //medium light gray
22
+//$base2:           #eee8d5; //cream
23
+//$base3:           #fdf6e3; //white
24
+//$solar-yellow:    #b58900;
25
+//$solar-orange:    #cb4b16;
26
+//$solar-red:       #dc322f;
27
+//$solar-magenta:   #d33682;
28
+//$solar-violet:    #6c71c4;
29
+//$solar-blue:      #268bd2;
30
+//$solar-cyan:      #2aa198;
31
+//$solar-green:     #859900;
32
+
33
+
34
+/* Non highlighted code colors */
35
+//$pre-bg: $base03;
36
+//$pre-border: $base02;
37
+//$pre-color: $base1;