diff --git a/README.md b/README.md
index 0ab4701..fab315b 100644
--- a/README.md
+++ b/README.md
@@ -112,3 +112,6 @@ Thank you so much for contributing!!
* [__Nord__](themes/prism-nord.css) (originally by [Nord](https://www.nordtheme.com/), adapted by [Zane Hitchcox](https://github.com/zwhitchcox) and [Gabriel Ramos](https://github.com/gabrieluizramos))
[](themes/prism-nord.css)
+
+* [__Bruha__](themes/prism-bruha.css) (by [catcarbonell](https://github.com/catcarbonell))
+[](themes/prism-bruha.css)
diff --git a/screenshots/prism-bruha.png b/screenshots/prism-bruha.png
new file mode 100644
index 0000000..6657e27
Binary files /dev/null and b/screenshots/prism-bruha.png differ
diff --git a/themes/prism-bruha.css b/themes/prism-bruha.css
new file mode 100644
index 0000000..088f57b
--- /dev/null
+++ b/themes/prism-bruha.css
@@ -0,0 +1,122 @@
+@import url(https://fonts.googleapis.com/css?family=Space+Mono);
+/**
+ * prism.js bruha for JavaScript, CoffeeScript, CSS and HTML
+ * @author Cat Carbonell
+ */
+
+code[class*="language-"],
+pre[class*="language-"] {
+
+ color: #ccc;
+ background: none;
+ font-family: 'Space Mono', Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
+ font-size: 1em;
+ text-align: left;
+ white-space: pre;
+ word-spacing: normal;
+ word-break: normal;
+ word-wrap: normal;
+ line-height: 1.5;
+
+ -moz-tab-size: 4;
+ -o-tab-size: 4;
+ tab-size: 4;
+ -webkit-hyphens: none;
+ -moz-hyphens: none;
+ -ms-hyphens: none;
+ hyphens: none;
+}
+/* Code blocks */
+pre[class*="language-"] {
+ padding: 1em;
+ margin: .5em 0;
+ overflow: auto;
+}
+
+:not(pre) > code[class*="language-"],
+pre[class*="language-"] {
+ background: rgba(102, 93, 105, 0.8);
+ border: solid 2px #665D69;
+}
+
+/* Inline code */
+:not(pre) > code[class*="language-"] {
+ padding: .1em;
+ border-radius: .3em;
+ white-space: normal;
+}
+
+.token.comment,
+.token.block-comment,
+.token.prolog,
+.token.doctype,
+.token.cdata {
+ color: #b4a4b8;
+}
+
+.token.punctuation {
+ color: #b4a4b8;
+}
+
+.token.tag,
+.token.attr-name,
+.token.namespace,
+.token.deleted {
+ color: #f4be9e;
+}
+
+.token.function-name {
+ color: #f4be9e;
+}
+
+.token.boolean,
+.token.number,
+.token.function {
+ color: #B3D4BC;
+}
+
+.token.property,
+.token.class-name,
+.token.constant,
+.token.symbol {
+ color: #7a5f4f;
+}
+
+.token.selector,
+.token.important,
+.token.atrule,
+.token.keyword,
+.token.builtin {
+ color: #D6ADD7;
+}
+
+.token.string,
+.token.char,
+.token.attr-value,
+.token.regex,
+.token.variable {
+ color: #B3D4BC;
+}
+
+.token.operator,
+.token.entity,
+.token.url {
+ color: #92cac9;
+}
+
+.token.important,
+.token.bold {
+ font-weight: bold;
+}
+
+.token .italic {
+ font-style: italic;
+}
+
+.token.entity {
+ cursor: help;
+}
+
+.token.inserted {
+ color: #f4be9e;
+}