mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-01-05 18:52:38 +00:00
Merge branch 'master' into F5_to_F6
This commit is contained in:
@@ -51,7 +51,7 @@
|
|||||||
&.meta {
|
&.meta {
|
||||||
.tooltipLeft('Properties');
|
.tooltipLeft('Properties');
|
||||||
}
|
}
|
||||||
&.snip {
|
&.snippet {
|
||||||
.tooltipLeft('Snippets');
|
.tooltipLeft('Snippets');
|
||||||
}
|
}
|
||||||
&.undo {
|
&.undo {
|
||||||
@@ -93,7 +93,7 @@
|
|||||||
&.editorTheme {
|
&.editorTheme {
|
||||||
.tooltipLeft('Editor Themes');
|
.tooltipLeft('Editor Themes');
|
||||||
font-size : 0.75em;
|
font-size : 0.75em;
|
||||||
color : black;
|
color : inherit;
|
||||||
&.active {
|
&.active {
|
||||||
position : relative;
|
position : relative;
|
||||||
background-color : #999999;
|
background-color : #999999;
|
||||||
|
|||||||
@@ -1,129 +0,0 @@
|
|||||||
/* Main BG color and normal text color */
|
|
||||||
.CodeMirror {
|
|
||||||
background: #293134;
|
|
||||||
color: #91A6AA;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Brew BG */
|
|
||||||
.brewRenderer {
|
|
||||||
background-color: #293134;
|
|
||||||
}
|
|
||||||
/* Blinking cursor */
|
|
||||||
.CodeMirror-cursor {
|
|
||||||
border-left: 1px solid #e0e2e4;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* HB DARK NAV START*/
|
|
||||||
|
|
||||||
/* Bars at the top */
|
|
||||||
.snippetBar {
|
|
||||||
background-color: #2F393C;
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
nav {
|
|
||||||
background-color: #293134;
|
|
||||||
}
|
|
||||||
nav .navItem {
|
|
||||||
background-color: #293134;
|
|
||||||
}
|
|
||||||
/* Fix for Homebrewery custom Snippet icons */
|
|
||||||
.snippetBar .fac {
|
|
||||||
filter: invert(1);
|
|
||||||
}
|
|
||||||
.snippetBar .snippetGroup .dropdown {
|
|
||||||
background-color: #2F393C;
|
|
||||||
}
|
|
||||||
/* HB DARK NAV END */
|
|
||||||
|
|
||||||
/* Line number stuff */
|
|
||||||
.CodeMirror-gutter-elt {
|
|
||||||
color: #81969A;
|
|
||||||
}
|
|
||||||
.CodeMirror-linenumber {
|
|
||||||
background-color: #293134;
|
|
||||||
}
|
|
||||||
.CodeMirror-gutter {
|
|
||||||
background-color: #293134;
|
|
||||||
}
|
|
||||||
/* column splits */
|
|
||||||
.editor .codeEditor .columnSplit {
|
|
||||||
font-style: italic;
|
|
||||||
color: inherit;
|
|
||||||
background-color:#1f5763;
|
|
||||||
border-bottom: #299 solid 1px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Colors for headings and such */
|
|
||||||
/* ###Headings */
|
|
||||||
.cm-s-default .cm-header {
|
|
||||||
color: #c51b1b;
|
|
||||||
-webkit-text-stroke-width: 0.1px;
|
|
||||||
-webkit-text-stroke-color: #000;
|
|
||||||
}
|
|
||||||
/* bold points */
|
|
||||||
.cm-header, .cm-strong {
|
|
||||||
font-weight: bold;
|
|
||||||
color: #309dd2;
|
|
||||||
}
|
|
||||||
/* Link headings */
|
|
||||||
.cm-s-default .cm-link {
|
|
||||||
color: #dd6300;
|
|
||||||
}
|
|
||||||
/* links */
|
|
||||||
.cm-s-default .cm-string {
|
|
||||||
color: #aa8261;
|
|
||||||
}
|
|
||||||
/*@import*/
|
|
||||||
.cm-s-default .cm-def {
|
|
||||||
color:#2986cc;
|
|
||||||
}
|
|
||||||
/* Bullets and such */
|
|
||||||
.cm-s-default .cm-variable-2 {
|
|
||||||
color: #3cbf30;
|
|
||||||
}
|
|
||||||
/* blocks */
|
|
||||||
.editor .codeEditor .block:not(.cm-comment) {
|
|
||||||
color: #e3e3e3;
|
|
||||||
}
|
|
||||||
/* inline blocks */
|
|
||||||
.editor .codeEditor .inline-block {
|
|
||||||
color: #e3e3e3;
|
|
||||||
}
|
|
||||||
/* Tags (divs) */
|
|
||||||
.cm-s-default .cm-tag {
|
|
||||||
color: #e3ff00;
|
|
||||||
}
|
|
||||||
.cm-s-default .cm-attribute {
|
|
||||||
color: #e3ff00;
|
|
||||||
}
|
|
||||||
.cm-s-default .cm-atom {
|
|
||||||
color:#000;
|
|
||||||
}
|
|
||||||
.cm-s-default .cm-qualifier{
|
|
||||||
color:#ee1919;
|
|
||||||
}
|
|
||||||
.cm-s-default .cm-comment{
|
|
||||||
color:#bbc700;
|
|
||||||
}
|
|
||||||
.cm-s-default .cm-keyword {
|
|
||||||
color:#c302df;
|
|
||||||
background-color:#b1b1b1;
|
|
||||||
}
|
|
||||||
.cm-s-default .cm-property.cm-error {
|
|
||||||
color:#c50202;
|
|
||||||
}
|
|
||||||
|
|
||||||
.CodeMirror-foldmarker {
|
|
||||||
color:#f0ff00;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* New page */
|
|
||||||
.editor .codeEditor .pageLine {
|
|
||||||
background: #000;
|
|
||||||
color:#000;
|
|
||||||
border-bottom: 1px solid #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cm-s-default .cm-builtin {
|
|
||||||
color:#fff;
|
|
||||||
}
|
|
||||||
134
themes/codeMirror/customThemes/darkbrewery.css
Normal file
134
themes/codeMirror/customThemes/darkbrewery.css
Normal file
@@ -0,0 +1,134 @@
|
|||||||
|
/*stylelint-disable*/
|
||||||
|
.editor .snippetBar {
|
||||||
|
color: white;
|
||||||
|
background-color: #2F393C;
|
||||||
|
.dropdown {
|
||||||
|
background-color: #2F393C;
|
||||||
|
}
|
||||||
|
.editors {
|
||||||
|
border-color: #ccc;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/* Main BG color and normal text color */
|
||||||
|
.CodeMirror {
|
||||||
|
--bg: #293134;
|
||||||
|
--highlight: #bcbcbc;
|
||||||
|
color: #91A6AA;
|
||||||
|
background: var(--bg);
|
||||||
|
.CodeMirror-scroll {
|
||||||
|
.CodeMirror-gutters {
|
||||||
|
border-right: 1px solid #555;
|
||||||
|
background: var(--bg);
|
||||||
|
.CodeMirror-gutter {
|
||||||
|
background-color: var(--bg);
|
||||||
|
&.CodeMirror-foldgutter {
|
||||||
|
cursor: pointer;
|
||||||
|
border-left: 1px solid #555;
|
||||||
|
transition: background 0.1s;
|
||||||
|
&:hover {
|
||||||
|
background: #555;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.CodeMirror-lines {
|
||||||
|
/* Line numbers*/
|
||||||
|
.CodeMirror-linenumber.CodeMirror-gutter-elt {
|
||||||
|
background-color: var(--bg);
|
||||||
|
color: #81969A;
|
||||||
|
}
|
||||||
|
/* Blinking cursor */
|
||||||
|
.CodeMirror-cursor {
|
||||||
|
border-left: 1px solid #E0E2E4;
|
||||||
|
}
|
||||||
|
.pageLine {
|
||||||
|
color: #000000;
|
||||||
|
background: #000000;
|
||||||
|
border-bottom: 1px solid #FFFFFF;
|
||||||
|
}
|
||||||
|
.CodeMirror-code .CodeMirror-line {
|
||||||
|
&.columnSplit {
|
||||||
|
font-style: italic;
|
||||||
|
color: inherit;
|
||||||
|
background-color: #1F5763;
|
||||||
|
border-bottom: #229999 solid 1px;
|
||||||
|
}
|
||||||
|
/*syntax*/
|
||||||
|
.cm-header {
|
||||||
|
font-weight: bold;
|
||||||
|
color: #C51B1B;
|
||||||
|
-webkit-text-stroke-width: 0.1px;
|
||||||
|
-webkit-text-stroke-color: #000000;
|
||||||
|
}
|
||||||
|
.cm-strong {
|
||||||
|
color: #309DD2;
|
||||||
|
}
|
||||||
|
.cm-em {
|
||||||
|
/*italics*/
|
||||||
|
}
|
||||||
|
.cm-link {
|
||||||
|
color: #DD6300;
|
||||||
|
}
|
||||||
|
.cm-string {
|
||||||
|
color: #AA8261;
|
||||||
|
}
|
||||||
|
/* @import */
|
||||||
|
.cm-def {
|
||||||
|
color: #2986CC;
|
||||||
|
}
|
||||||
|
/* Bullets and such */
|
||||||
|
.cm-variable-2 {
|
||||||
|
color: #3CBF30;
|
||||||
|
}
|
||||||
|
.block:not(.cm-comment) {
|
||||||
|
color: #E3E3E3;
|
||||||
|
}
|
||||||
|
.inline-block {
|
||||||
|
color: #E3E3E3;
|
||||||
|
}
|
||||||
|
.cm-tag {
|
||||||
|
color: #E3FF00;
|
||||||
|
}
|
||||||
|
.cm-attribute {
|
||||||
|
color: #E3FF00;
|
||||||
|
}
|
||||||
|
.cm-atom {
|
||||||
|
color: #c1939a;
|
||||||
|
}
|
||||||
|
.cm-number {
|
||||||
|
color: #2986CC;
|
||||||
|
}
|
||||||
|
.cm-property:not(.cm-error) ~ .cm-variable {
|
||||||
|
color:#9e1f9e;
|
||||||
|
}
|
||||||
|
.cm-qualifier {
|
||||||
|
color: #EE1919;
|
||||||
|
}
|
||||||
|
.cm-comment {
|
||||||
|
color: #BBC700;
|
||||||
|
}
|
||||||
|
.cm-keyword {
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
.cm-error {
|
||||||
|
color: #C50202;
|
||||||
|
}
|
||||||
|
.CodeMirror-foldmarker {
|
||||||
|
color: #F0FF00;
|
||||||
|
}
|
||||||
|
.cm-builtin {
|
||||||
|
color: #FFFFFF;
|
||||||
|
}
|
||||||
|
.dt-highlight {
|
||||||
|
background: #ffffff14;
|
||||||
|
}
|
||||||
|
.dl-colon-highlight {
|
||||||
|
background: #ccc;
|
||||||
|
}
|
||||||
|
.dl-highlight.dd-highlight {
|
||||||
|
color: #b5858d;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -15,7 +15,7 @@
|
|||||||
"cobalt",
|
"cobalt",
|
||||||
"colorforth",
|
"colorforth",
|
||||||
"darcula",
|
"darcula",
|
||||||
"darkbrewery-v301",
|
"darkbrewery",
|
||||||
"darkvision",
|
"darkvision",
|
||||||
"dracula",
|
"dracula",
|
||||||
"duotone-dark",
|
"duotone-dark",
|
||||||
|
|||||||
Reference in New Issue
Block a user