add panelUI as copy of panelUIOverlay.css, matched to current trunk
[themes.git] / LCARStrek / devtools / variables.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 /* Variable declarations for light and dark devtools themes.
7  * Colors are taken from:
8  * https://developer.mozilla.org/en-US/docs/Tools/DevToolsColors.
9  * Changes should be kept in sync with commandline.css and commandline.inc.css.
10  */
11
12 /* IMPORTANT NOTE:
13  * This file is parsed in js (see client/shared/theme.js)
14  * so the formatting should be consistent (i.e. no '}' inside a rule).
15  */
16
17 :root {
18   --theme-body-background: #000000;
19   --theme-sidebar-background: #000000;
20   --theme-contrast-background: #402800;
21   --theme-contrast-border: #A09090;
22   --theme-contrast-background2: #795900;
23
24   --theme-tab-toolbar-background: #402800;
25   --theme-toolbar-background: #000000;
26   --theme-button-background: #C09070;
27   --theme-hover-background: #FFCF00;
28   --theme-hover-color: #000000;
29   --theme-active-background: #FFCF00;
30   --theme-active-color: #000000;
31   --theme-selection-background: #008484;
32   --theme-selection-color: #000000;
33   --theme-selection-background2: #004242;
34   --theme-selection-color2: #FF9F00;
35   --theme-selection-background-semitransparent: rgba(0, 132, 132, .5);
36   --theme-splitter-color: #9C9CFF;
37   --theme-comment: #A09090;
38
39   --theme-sidebar-background: #000000;
40   --theme-contrastsidebar-background: #A09090;
41   --theme-contrastsidebar-color: #000000;
42   --theme-contrastsidebar-bordercolor: #000000;
43
44   --theme-body-color: #FF9F00;
45   --theme-body-color-alt: #A09090;
46   --theme-body-color-inactive: #8050B0;
47   --theme-content-color1: #FF9F00;
48   --theme-content-color2: #A09090;
49   --theme-content-color3: #FF9F00;
50   --theme-content-color4: #9C9CFF;
51
52   --theme-text-blue: #3333FF;
53   --theme-highlight-green: #008484;
54   --theme-highlight-blue: #9C9CFF;
55   --theme-highlight-bluegrey: #A09090;
56   --theme-highlight-purple: #C09070;
57   --theme-highlight-darkpurple: #6000CF;
58   --theme-highlight-lightorange: #FFCF00;
59   --theme-highlight-orange: #FF9F00;
60   --theme-highlight-red: #FF0000;
61   --theme-highlight-pink: #E7ADE7;
62
63   /* Colors used in Graphs, like performance tools. Mostly similar to some "highlight-*" colors. */
64   --theme-graphs-green: #008484;
65   --theme-graphs-blue: #9C9CFF;
66   --theme-graphs-bluegrey: #C09070;
67   --theme-graphs-purple: #C09070;
68   --theme-graphs-yellow: #FFCF00;
69   --theme-graphs-red: #FF0000;
70   --theme-graphs-grey: #A09090;
71   --theme-graphs-full-red: #FF0000;
72   --theme-graphs-full-blue: #0000FF;
73
74   /* Images */
75   --theme-pane-collapse-image: url(chrome://devtools/skin/images/pane-collapse.svg);
76   --theme-pane-expand-image: url(chrome://devtools/skin/images/pane-expand.svg);
77 }