first (largest) part of sync for both themes with toolkit windows theme changes in...
[themes.git] / LCARStrek / devtools / variables.css
CommitLineData
dadba0f2
RK
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;
1e9e1791 27 --theme-button-color: #000000;
dadba0f2
RK
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;
7d6161c5 47 --theme-body-color-inactive: #8050B0;
dadba0f2
RK
48 --theme-content-color1: #FF9F00;
49 --theme-content-color2: #A09090;
50 --theme-content-color3: #FF9F00;
51 --theme-content-color4: #9C9CFF;
dadba0f2
RK
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
64 /* Colors used in Graphs, like performance tools. Mostly similar to some "highlight-*" colors. */
65 --theme-graphs-green: #008484;
66 --theme-graphs-blue: #9C9CFF;
67 --theme-graphs-bluegrey: #C09070;
68 --theme-graphs-purple: #C09070;
69 --theme-graphs-yellow: #FFCF00;
70 --theme-graphs-red: #FF0000;
71 --theme-graphs-grey: #A09090;
7d6161c5
RK
72 --theme-graphs-full-red: #FF0000;
73 --theme-graphs-full-blue: #0000FF;
dadba0f2
RK
74
75 /* Images */
76 --theme-pane-collapse-image: url(chrome://devtools/skin/images/pane-collapse.svg);
77 --theme-pane-expand-image: url(chrome://devtools/skin/images/pane-expand.svg);
78}