first part of syncing LCARStrek with Firefox 49/50 devtools theme changes
[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-button-color: #000000;
28   --theme-hover-background: #FFCF00;
29   --theme-hover-color: #000000;
30   --theme-active-background: #FFCF00;
31   --theme-active-color: #000000;
32   --theme-selection-background: #008484;
33   --theme-selection-color: #000000;
34   --theme-selection-background2: #004242;
35   --theme-selection-color2: #FF9F00;
36   --theme-selection-background-semitransparent: rgba(0, 132, 132, .5);
37   --theme-splitter-color: #9C9CFF;
38   --theme-comment: #A09090;
39
40   --theme-sidebar-background: #000000;
41   --theme-contrastsidebar-background: #A09090;
42   --theme-contrastsidebar-color: #000000;
43   --theme-contrastsidebar-bordercolor: #000000;
44
45   --theme-body-color: #FF9F00;
46   --theme-body-color-alt: #A09090;
47   --theme-body-color-inactive: #8050B0;
48   --theme-content-color1: #FF9F00;
49   --theme-content-color2: #A09090;
50   --theme-content-color3: #FF9F00;
51   --theme-content-color4: #9C9CFF;
52
53   --theme-text-blue: #3333FF;
54   --theme-highlight-green: #008484;
55   --theme-highlight-blue: #9C9CFF;
56   --theme-highlight-bluegrey: #A09090;
57   --theme-highlight-purple: #C09070;
58   --theme-highlight-darkpurple: #6000CF;
59   --theme-highlight-lightorange: #FFCF00;
60   --theme-highlight-orange: #FF9F00;
61   --theme-highlight-red: #FF0000;
62   --theme-highlight-pink: #E7ADE7;
63   --theme-highlight-gray: #A09090;
64
65   /* For accessibility purposes we want to enhance the focus styling. This
66    * should improve keyboard navigation usability. */
67   --theme-focus-outline-color: #008484;
68
69   /* Colors used in Graphs, like performance tools. Mostly similar to some "highlight-*" colors. */
70   --theme-graphs-green: #008484;
71   --theme-graphs-blue: #9C9CFF;
72   --theme-graphs-bluegrey: #C09070;
73   --theme-graphs-purple: #C09070;
74   --theme-graphs-yellow: #FFCF00;
75   --theme-graphs-red: #FF0000;
76   --theme-graphs-grey: #A09090;
77   --theme-graphs-full-red: #FF0000;
78   --theme-graphs-full-blue: #0000FF;
79
80   /* Images */
81   --theme-pane-collapse-image: url(chrome://devtools/skin/images/pane-collapse.svg);
82   --theme-pane-expand-image: url(chrome://devtools/skin/images/pane-expand.svg);
83
84   /* Tooltips */
85   --theme-tooltip-border: #FFCF00;
86   --theme-tooltip-background: #9C9CFF;
87   /*--theme-tooltip-shadow: rgba(25, 25, 25, 0.76);*/
88
89   /* Command line */
90   --theme-command-line-image: url(chrome://devtools/skin/images/commandline-icon.svg#light-theme);
91   --theme-command-line-image-focus: url(chrome://devtools/skin/images/commandline-icon.svg#light-theme-focus);
92 }
93
94 :root {
95   --theme-focus-border-color-textbox: #008484;
96   /*--theme-textbox-box-shadow: rgba(97,181,255,.75);*/
97
98   /* For accessibility purposes we want to enhance the focus styling. This
99    * should improve keyboard navigation usability. */
100   --theme-focus-outline: 1px dotted var(--theme-focus-outline-color);
101 /*  --theme-focus-box-shadow-textbox: 0 0 0 1px var(--theme-textbox-box-shadow);*/
102 }