Skip to content

Commit

Permalink
Add Material Themes (#86)
Browse files Browse the repository at this point in the history
Themes included:

* Material Theme Light
* Material Theme Oceanic
* Material Theme Dark
  • Loading branch information
dantehemerson authored and mAAdhaTTah committed Oct 21, 2019
1 parent be5bbfe commit cc8a010
Show file tree
Hide file tree
Showing 7 changed files with 631 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,3 +91,12 @@ Thank you so much for contributing!!

* [__Shades of Purple__](themes/prism-shades-of-purple.css) (by [Ahmad Awais](https://github.com/ahmadawais))<br />
[![Shades of Purple](screenshots/prism-shades-of-purple.png)](themes/prism-shades-of-purple.css)

* [__Material Dark__](themes/prism-material-dark.css) (by [dutchenkoOleg](https://github.com/dutchenkoOleg))<br />
[![Material Dark](screenshots/prism-material-dark.png)](themes/prism-material-dark.css)

* [__Material Light__](themes/prism-material-light.css) (by [dutchenkoOleg](https://github.com/dutchenkoOleg))<br />
[![Material Light](screenshots/prism-material-light.png)](themes/prism-material-light.css)

* [__Material Oceanic__](themes/prism-material-oceanic.css) (by [dutchenkoOleg](https://github.com/dutchenkoOleg))<br />
[![Material Oceanic](screenshots/prism-material-oceanic.png)](themes/prism-material-oceanic.css)
Binary file added screenshots/prism-material-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/prism-material-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/prism-material-oceanic.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
205 changes: 205 additions & 0 deletions themes/prism-material-dark.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,205 @@
code[class*="language-"],
pre[class*="language-"] {
text-align: left;
white-space: pre;
word-spacing: normal;
word-break: normal;
word-wrap: normal;
color: #eee;
background: #2f2f2f;
font-family: Roboto Mono, monospace;
font-size: 1em;
line-height: 1.5em;

-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;

-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}

code[class*="language-"]::-moz-selection,
pre[class*="language-"]::-moz-selection,
code[class*="language-"] ::-moz-selection,
pre[class*="language-"] ::-moz-selection {
background: #363636;
}

code[class*="language-"]::selection,
pre[class*="language-"]::selection,
code[class*="language-"] ::selection,
pre[class*="language-"] ::selection {
background: #363636;
}

:not(pre) > code[class*="language-"] {
white-space: normal;
border-radius: 0.2em;
padding: 0.1em;
}

pre[class*="language-"] {
overflow: auto;
position: relative;
margin: 0.5em 0;
padding: 1.25em 1em;
}

.language-css > code,
.language-sass > code,
.language-scss > code {
color: #fd9170;
}

[class*="language-"] .namespace {
opacity: 0.7;
}

.token.atrule {
color: #c792ea;
}

.token.attr-name {
color: #ffcb6b;
}

.token.attr-value {
color: #a5e844;
}

.token.attribute {
color: #a5e844;
}

.token.boolean {
color: #c792ea;
}

.token.builtin {
color: #ffcb6b;
}

.token.cdata {
color: #80cbc4;
}

.token.char {
color: #80cbc4;
}

.token.class {
color: #ffcb6b;
}

.token.class-name {
color: #f2ff00;
}

.token.comment {
color: #616161;
}

.token.constant {
color: #c792ea;
}

.token.deleted {
color: #ff6666;
}

.token.doctype {
color: #616161;
}

.token.entity {
color: #ff6666;
}

.token.function {
color: #c792ea;
}

.token.hexcode {
color: #f2ff00;
}

.token.id {
color: #c792ea;
font-weight: bold;
}

.token.important {
color: #c792ea;
font-weight: bold;
}

.token.inserted {
color: #80cbc4;
}

.token.keyword {
color: #c792ea;
}

.token.number {
color: #fd9170;
}

.token.operator {
color: #89ddff;
}

.token.prolog {
color: #616161;
}

.token.property {
color: #80cbc4;
}

.token.pseudo-class {
color: #a5e844;
}

.token.pseudo-element {
color: #a5e844;
}

.token.punctuation {
color: #89ddff;
}

.token.regex {
color: #f2ff00;
}

.token.selector {
color: #ff6666;
}

.token.string {
color: #a5e844;
}

.token.symbol {
color: #c792ea;
}

.token.tag {
color: #ff6666;
}

.token.unit {
color: #fd9170;
}

.token.url {
color: #ff6666;
}

.token.variable {
color: #ff6666;
}
Loading

0 comments on commit cc8a010

Please sign in to comment.