From 4324f519fa90ecffd228511008fef8e7210ae00b Mon Sep 17 00:00:00 2001 From: Remie Bolte Date: Tue, 6 Sep 2011 23:18:52 +0200 Subject: [PATCH] Fixing issue #18 - Contrast in Syntax Highlighting (going retro: colourful syntax highlighting) --- assets/devkit.css | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/assets/devkit.css b/assets/devkit.css index 935c5e7..a713dae 100755 --- a/assets/devkit.css +++ b/assets/devkit.css @@ -34,7 +34,7 @@ border-bottom: 1px solid hsl(210, 5%, 20%); color: hsl(0, 0%, 80%); display: block; - font: 105% monospace; + font: 115% monospace; left: 0; line-height: 40px; padding: 0 20px; @@ -165,23 +165,27 @@ -----------------------------------------------------------------------------*/ #source .context-markup .declaration { - color: hsl(0, 0%, 80%); + color: #CCFF77; } - + #source .context-markup .tag { - color: hsl(0, 0%, 80%); + color: #CCFF77; } - + #source .context-markup .attribute { - color: hsl(0, 0%, 80%); + color: #FFBB66; } - + #source .context-markup .entity { - color: hsl(80, 50%, 70%); + color: #99AAFF; } - + #source .context-markup .value { - color: hsl(210, 50%, 70%); + color: #9af; + } + + #source .context-markup .text { + color: white; } /*-------------------------------------------------------------------------