Skip to content

Instantly share code, notes, and snippets.

@mrjacobbloom
Last active April 15, 2016 16:26
Show Gist options
  • Select an option

  • Save mrjacobbloom/f3f2109480cb1d4b7edf4a9c41335c73 to your computer and use it in GitHub Desktop.

Select an option

Save mrjacobbloom/f3f2109480cb1d4b7edf4a9c41335c73 to your computer and use it in GitHub Desktop.
@-moz-document url-prefix("http://tosh.tjvr.org/app/") {
body {
background: #555;
}
#menu {
box-shadow: 0 0 5px #000;
color: #ddd;
background: #888;
}
/* left panes */
.tabs .tab {
background: #888;
color: #ddd;
}
.pane-active, .tabs .tab-active {
background: #333;
color: #ccc;
border: none;
box-shadow: 0 0 5px #000;
border-radius: 4px;
border-top-left-radius: 0;
}
.tabs .tab-active {
box-shadow: 0 -3px 5px -3px #000;
}
.costume, .sound {
background: transparent;
}
.new-variable {
background: transparent;
color: #888;
}
/* player */
.controls span {
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
filter: grayscale(100%);
}
.controls .flag.has-errors {
/*opacity: .5;*/
background-color: #ddd;
border-radius: 4px;
}
.player {
box-shadow: 0 0 5px #000;
}
/* sprite switcher */
.switcher {
background: #333;
color: #ccc;
border: none;
box-shadow: 0 0 5px #000;
border-radius: 4px;
}
.switcher .sprite {
background: transparent;
}
.switcher .sprite-active {
color: #ccc;
background: #444;
}
.switcher .name-editing {
color: #ddd;
background: #777;
}
/* code area */
.editor {
border: none;
box-shadow: 0 0 5px #000;
border-radius: 4px;
}
.editor, .CodeMirror {
background: #333;
}
.CodeMirror-gutters {
border-right: none;
}
.CodeMirror-gutter {
background: #333;
color: #888;
}
.CodeMirror-cursor {
border-left-color: #ddd;
}
.CodeMirror-focused .CodeMirror-selected,.CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection { /* blobby whyyyyyy */
background: #555;
}
.CodeMirror-focused .CodeMirror-selected,.CodeMirror-line::moz-selection,.CodeMirror-line>span::moz-selection,.CodeMirror-line>span>span::moz-selection {
background: #555;
}
/* text colors */
.cm-s-looks {
color: #a5d;
}
.cm-s-sound {
color: #d4c; /* original color loos fine, differentiating from looks and custom */
}
.cm-s-custom {
color: #84d;
}
.cm-s-parameter {
color: #65f;
}
.cm-s-extension {
color: #768;
}
.CodeMirror-matchingbracket {
color: #bfb !important;
}
.cm-s-number, .cm-string, .cm-s-false,.cm-s-error { /* text that isn't a block wwill be white, including errors */
color: #ccc !important;
}
/* error text and stuff */
.error-widget {
color: #ccc;
}
.error-widget {
background: #922;
box-shadow: inset -2px -2px 2px rgba(0,0,0,.4),
inset 2px 2px 2px rgba(255,255,255,.3);
border-radius: 4px;
display: inline-block;
padding-right: 12px;
}
.icon-error {
color: #922;
}
/* autofill */
.CodeMirror-hints {
background: #222;
color: #ccc;
border: 0;
}
.CodeMirror-hint-active {
background: #333 !important;
}
.CodeMirror-hint-active::after {
background: #222;
margin-top: 1px;
margin-right: 1px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment