summaryrefslogtreecommitdiff
path: root/lib/coderay/styles/murphy.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/coderay/styles/murphy.rb')
-rw-r--r--lib/coderay/styles/murphy.rb36
1 files changed, 18 insertions, 18 deletions
diff --git a/lib/coderay/styles/murphy.rb b/lib/coderay/styles/murphy.rb
index f5cb2cb..9377a10 100644
--- a/lib/coderay/styles/murphy.rb
+++ b/lib/coderay/styles/murphy.rb
@@ -1,16 +1,16 @@
module CodeRay
- module Styles
-
- class Murphy < Style
-
- register_for :murphy
-
- code_background = '#001129'
- numbers_background = code_background
- border_color = 'silver'
- normal_color = '#C0C0C0'
-
- CSS_MAIN_STYLES = <<-MAIN
+module Styles
+
+ class Murphy < Style
+
+ register_for :murphy
+
+ code_background = '#001129'
+ numbers_background = code_background
+ border_color = 'silver'
+ normal_color = '#C0C0C0'
+
+ CSS_MAIN_STYLES = <<-MAIN
.CodeRay {
background-color: #{code_background};
border: 1px solid #{border_color};
@@ -39,9 +39,9 @@ ol.CodeRay { font-size: 10pt; }
ol.CodeRay li { white-space: pre; }
.CodeRay .code pre { overflow: auto; }
- MAIN
+ MAIN
- TOKEN_COLORS = <<-'TOKENS'
+ TOKEN_COLORS = <<-'TOKENS'
.af { color:#00C; }
.an { color:#007; }
.av { color:#700; }
@@ -111,9 +111,9 @@ ol.CodeRay li { white-space: pre; }
.ty { color:#339; font-weight:bold; }
.v { color:#036; }
.xt { color:#444; }
- TOKENS
-
- end
-
+ TOKENS
+
end
+
+end
end