Skip to content

Commit

Permalink
Remove prism dark theme
Browse files Browse the repository at this point in the history
  • Loading branch information
ianobermiller committed Oct 9, 2019
1 parent 3c28cce commit 9cfd3b2
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 143 deletions.
2 changes: 0 additions & 2 deletions src/templates/Layout.tsx
Expand Up @@ -8,8 +8,6 @@ import DateText from './DateText';

import './reset.css';
import './layout.scss';
import './prism-light.scss';
import './prism-dark.scss';

interface Props {
children: ReactNodeArray;
Expand Down
61 changes: 60 additions & 1 deletion src/templates/layout.scss
Expand Up @@ -196,7 +196,66 @@ pre {
}
}

// Shared Prism styes
// Prism Code Highlighting
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
color: slategray;
}

.token.punctuation {
color: #999;
}

.namespace {
opacity: 0.7;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
color: #905;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
color: #690;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
color: #9a6e3a;
}

.token.atrule,
.token.attr-value,
.token.keyword {
color: #07a;
}

.token.function,
.token.class-name {
color: #dd4a68;
}

.token.regex,
.token.important,
.token.variable {
color: #e90;
}

.token.important,
.token.bold {
font-weight: bold;
Expand Down
69 changes: 0 additions & 69 deletions src/templates/prism-dark.scss

This file was deleted.

71 changes: 0 additions & 71 deletions src/templates/prism-light.scss

This file was deleted.

0 comments on commit 9cfd3b2

Please sign in to comment.