aboutsummaryrefslogtreecommitdiff
path: root/scss/imports/themes/default/_colors.scss
blob: 8e67cfd79f2560f9d9041499b1f3ecd9373169ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
// <copyright>
Copyright (c) 2012, Motorola Mobility, Inc
All Rights Reserved.
BSD License.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

  - Redistributions of source code must retain the above copyright notice,
    this list of conditions and the following disclaimer.
  - Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
  - Neither the name of Motorola Mobility nor the names of its contributors
    may be used to endorse or promote products derived from this software
    without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
</copyright>

//_colors.scss
//Defines the colors for the UI of the application.
//To create a new theme, copy this file and change the values as desired.
//Note: Some colors are defined as both rgb and rgba; some of the rgba versions have multiple a values.


//  Colors for radio buttons and other form elements
$color-radio-border: rgb(40,40,40);
$color-radio-shadow: rgba(200,200,200,0.5);
$color-radio-gradient-top: rgb(100,100,100);
$color-radio-gradient-bottom: rgb(60,60,60);
$color-formgrad-top: rgb(80,80,80);
$color-formgrad-bottom: rgb(60,60,60);
$color-radio-bg: rgb(0,0,0);
$color-radio: rgb(200,200,200);
$color-input: rgb(255,255,255);
$color-input-bg: rgb(68, 68, 68);
$color-input-border: rgb(49, 49, 49);
$color-focus-outline: rgb(180, 180, 180);
$color-transparent: rgba(0,0,0,0);

//  Base colors for dividers
// Dividers consist of a div with a background color and either
// a top & bottom border (in the case of horizontal dividers)
// or a left & right border (in the case of vertical dividers),
// for a total of three different colors.
//

$color-divider-first: rgb(35,35,35); //  top and left
$color-divider-second: rgb(0,0,0); //  Middle
$color-divider-third: rgb(58,58,58); //  Bottom and right

//  Main background color of entire app
$color-app-bg: rgb(0,0,0); //  Main app background color.
$color-app-bg-a1: rgba(0,0,0,1);  //  rgba version
$color-app-border: rgb(51,51,51); //  Main app border color
$color-app-shadow: rgba(0,0,0,.5); //  color of drop shadows
$color-stage: rgb(128,128,128); //  Stage color
$color-body-border: rgb(0,0,0); //  body border color
$color-body-bg: rgb(255,255,255); //  Body background color

//  Colors for main dropdown menus: background & text for both regular and highlighted states, dividers
$color-menu-bg: rgb(71,71,71);
$color-menu-text: rgb(255,255,255);
$color-menu-hilite-bg: rgb(178,178,178);
$color-menu-hilite-text: rgb(36,36,36);
$color-menu-divider: rgb(80,80,80);
$color-menu-border: rgb(0,0,0);
$color-menu-active-bg: rgb(181,122,10);


//  Colors for tools: background, text, how they interact with the UI
$color-tool-bg: rgb(41,41,41);
$color-tool-bg-active: rgb(178,178,178);
$color-tool-border-selected: rgb(89,89,89);
$color-tool-bg-a1: rgba(41,41,41,1);
$color-tool-text: rgb(255,255,255);
$color-tool-text-a1: rgba(255,255,255,1);
$color-tool-separator-top: $color-divider-first;
$color-tool-separator-middle: $color-divider-second;
$color-tool-separator-bottom: $color-divider-third;
$color-tool-select-bg: rgb(102,102,102);
$color-tool-select-border: rgb(0,0,0);
$color-tool-select-hover-bg: rgb(221,221,221);


//  Colors for panels: background & text, both regular and highlighted states, dividers, borders, shadows, etc.
$color-panel-bg: $color-menu-bg;
$color-panel-text: $color-menu-text;
$color-panel-input: $color-panel-text;
$color-panel-hilite-bg: $color-menu-hilite-bg;
$color-panel-hilite-text: $color-menu-hilite-text;
$color-panel-clickable: rgb(215,215,215); //  used for editable items in their non-edit state, etc.
$color-panel-border: $color-menu-border; //  Border for panel and for block elements
$color-panel-shadow: rgb(58,58,58); //  Shadow for text and block elements
$color-panel-input-bg: rgb(68, 68, 68);
$color-panel-dividerlabel-bg: rgb(62, 62, 62);
$color-panel-input-border: rgb(49, 49, 49);
$color-panel-divider-top: rgb(62, 62, 62);
$color-panel-divider: $color-menu-divider;
$color-panel-divider-bottom: rgb(86, 86, 86);

//  Colors for scroll bars
$color-sb-border: rgb(0,0,0);
$color-sb-1: rgb(140,140,140);
$color-sb-2: rgb(173,173,173);
$color-sb-hover-1: rgb(190,190,190);
$color-sb-hover-2: rgb(255,255,255);