Skip to content

Commit a1d9310

Browse files
committed
Change code block color theme
1 parent 4b82280 commit a1d9310

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

Gruntfile.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ module.exports = function(grunt) {
6060
dist: {
6161
files: {
6262
'<%= dirs.cssDest %>/<%= pkg.name %>.css': [
63-
'bower_components/highlightjs/styles/default.css',
63+
'bower_components/highlightjs/styles/tomorrow-night.css',
6464
'<%= dirs.cssDest %>/<%= pkg.name %>-main.css',
6565
],
6666
'<%= dirs.cssDest %>/<%= pkg.name %>.min.css': [
67-
'bower_components/highlightjs/styles/default.css', // TODO minimize
67+
'bower_components/highlightjs/styles/tomorrow-night.css', // TODO minimize
6868
'<%= dirs.cssDest %>/<%= pkg.name %>-main.min.css',
6969
],
7070
'<%= dirs.jsDest %>/<%= pkg.name %>.js': [

resource/css/_wiki.scss

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
2-
pre.body {
3-
border: solid 1px #ccc;
4-
background: #f0f0f0;
5-
}
61
div.body {
72
padding: 10px;
83
}
@@ -105,6 +100,10 @@ div.body {
105100
pre {
106101
line-height: 1.4em;
107102
font-size: .9em;
103+
border: solid 1px #333;
104+
background: #444;
105+
color: #f0f0f0;
106+
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
108107
}
109108

110109
img {

0 commit comments

Comments
 (0)