first part of sync for LCARStrek with browser windows/shared theme changes in Firefox...
[themes.git] / LCARStrek / browser / devtools / dark-theme.css
1 /* vim:set ts=2 sw=2 sts=2 et: */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3  * License, v. 2.0. If a copy of the MPL was not distributed with this
4  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5
6 /* According to:
7  * https://bugzilla.mozilla.org/show_bug.cgi?id=715472#c17
8  */
9 .theme-body {
10   background: #000000;
11   color: #FF9F00;
12 }
13
14 .theme-twisty {
15   cursor: pointer;
16   width: 14px;
17   height: 14px;
18   background-repeat: no-repeat;
19   background-image: url("chrome://browser/skin/devtools/controls.png");
20   background-position: 0 -14px;
21 }
22
23 .theme-twisty:-moz-focusring {
24   outline-style: none;
25 }
26
27 .theme-twisty[open] {
28   background-position: -14px -14px;
29 }
30
31 .theme-checkbox {
32   display: inline-block;
33   border: 0;
34   width: 14px;
35   height: 14px;
36   padding: 0;
37   outline: none;
38   background-image: url("chrome://browser/skin/devtools/controls.png");
39   background-position: 0 0;
40 }
41
42 .theme-checkbox[checked] {
43   background-position: -14px 0;
44 }
45
46 .theme-selected {
47   background: #004242;
48 }
49
50 .theme-bg-darker {
51   background-color: rgba(0,0,0,0.5);
52 }
53
54 .theme-bg-contrast { /* contrast bg color to attract attention on a container */
55   background: #404000;
56 }
57
58 .theme-link { /* original: blue */
59   color: #3333FF;
60 }
61
62 .theme-comment { /* original: grey */
63   color: #A09090;
64 }
65
66 .theme-gutter {
67   background-color: #000000;
68   color: #FF9F00;
69   border-color: #9C9CFF;
70 }
71
72 .theme-separator { /* original: grey */
73   border-color: #8050B0;
74 }
75
76 .theme-fg-color1 { /* original: green */
77   color: #008484;
78 }
79
80 .theme-fg-color2 { /* original: blue */
81   color: #9C9CFF;
82 }
83
84 .theme-fg-color3 { /* original: pink/lavender */
85   color: #E7ADE7;
86 }
87
88 .theme-fg-color4 { /* original: purple/violet */
89   color: #C09070;
90 }
91
92 .theme-fg-color5 { /* original: Yellow */
93   color: #FFCF00;
94 }
95
96 .theme-fg-color6 { /* original: Orange */
97   color: #FF9F00;
98 }
99
100 .theme-fg-color7 { /* original: Red */
101   color: #FF0000;
102 }
103
104 .theme-fg-contrast { /* To be used for text on theme-bg-contrast */
105   color: #FFCF00;
106 }
107
108 .ruleview-colorswatch,
109 .computedview-colorswatch,
110 .markupview-colorswatch {
111 /*  box-shadow: 0 0 0 1px rgba(0,0,0,0.5); */
112 }