Browse Source

Merge pull request #165 from dhenson02/master

Font color adjustment
Thibaut Courouble 10 years ago
parent
commit
09b0ed2dc2

+ 5 - 5
assets/stylesheets/components/_prism.scss

@@ -18,7 +18,7 @@
 .token.symbol,
 .token.deleted {
   @if $style == 'dark' {
-    color: #cf6a4c;
+    color: #eb8160;
   } @else {
     color: #905;
   }
@@ -31,7 +31,7 @@
 .token.builtin,
 .token.inserted {
   @if $style == 'dark' {
-    color: #d0c584;
+    color: #ddcf88;
   } @else {
     color: #5e8e01;
   }
@@ -43,7 +43,7 @@
 .language-css .token.string,
 .style .token.string {
   @if $style == 'dark' {
-    color: #8f9d6a;
+    color: #b1c676;
   } @else {
     color: #a67f59;
   }
@@ -53,7 +53,7 @@
 .token.attr-value,
 .token.keyword {
   @if $style == 'dark' {
-    color: #7587a6;
+    color: #91b3ed;
   } @else {
     color: #0070a3;
   }
@@ -61,7 +61,7 @@
 
 .token.function {
   @if $style == 'dark' {
-    color: #ac885b;
+    color: #c79e6b;
   } @else {
     color: #dd4a68;
   }

+ 2 - 2
assets/stylesheets/global/variables-dark.scss

@@ -9,7 +9,7 @@ $sidebarMediumWidth: 16rem;
 
 $contentBackground: #2d2d2d;
 
-$textColor: #b4b3af;
+$textColor: #c9c9c9;
 $textColorLight: #7e7d7d;
 $textColorLighter: #6a6868;
 
@@ -29,7 +29,7 @@ $selectionText: #fff;
 
 $highlightBackground: #3d4449;
 
-$linkColor: #f7f2f2;
+$linkColor: #fff;
 $linkColorHover: #fff;
 
 $headerBackground: #1e1e1e;