aboutsummaryrefslogtreecommitdiff
path: root/scss/imports/themes/default/_colors.scss
diff options
context:
space:
mode:
Diffstat (limited to 'scss/imports/themes/default/_colors.scss')
-rw-r--r--scss/imports/themes/default/_colors.scss94
1 files changed, 94 insertions, 0 deletions
diff --git a/scss/imports/themes/default/_colors.scss b/scss/imports/themes/default/_colors.scss
new file mode 100644
index 00000000..2a7b8191
--- /dev/null
+++ b/scss/imports/themes/default/_colors.scss
@@ -0,0 +1,94 @@
1// <copyright>
2// This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
3// No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
4// (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
5// </copyright>
6
7//_colors.scss
8//Defines the colors for the UI of the application.
9//To create a new theme, copy this file and change the values as desired.
10//Note: Some colors are defined as both rgb and rgba; some of the rgba versions have multiple a values.
11
12
13// Colors for radio buttons and other form elements
14$color-radio-border: rgb(40,40,40);
15$color-radio-shadow: rgba(200,200,200,0.5);
16$color-radio-gradient-top: rgb(100,100,100);
17$color-radio-gradient-bottom: rgb(60,60,60);
18$color-formgrad-top: rgb(80,80,80);
19$color-formgrad-bottom: rgb(60,60,60);
20$color-radio-bg: rgb(0,0,0);
21$color-radio: rgb(200,200,200);
22$color-input: rgb(255,255,255);
23$color-input-bg: rgb(68, 68, 68);
24$color-input-border: rgb(49, 49, 49);
25$color-focus-outline: rgb(180, 180, 180);
26$color-transparent: rgba(0,0,0,0);
27
28// Base colors for dividers
29// Dividers consist of a div with a background color and either
30// a top & bottom border (in the case of horizontal dividers)
31// or a left & right border (in the case of vertical dividers),
32// for a total of three different colors.
33//
34
35$color-divider-first: rgb(35,35,35); // top and left
36$color-divider-second: rgb(0,0,0); // Middle
37$color-divider-third: rgb(58,58,58); // Bottom and right
38
39// Main background color of entire app
40$color-app-bg: rgb(0,0,0); // Main app background color.
41$color-app-bg-a1: rgba(0,0,0,1); // rgba version
42$color-app-border: rgb(51,51,51); // Main app border color
43$color-app-shadow: rgba(0,0,0,.5); // color of drop shadows
44$color-stage: rgb(128,128,128); // Stage color
45$color-body-border: rgb(0,0,0); // body border color
46$color-body-bg: rgb(255,255,255); // Body background color
47
48// Colors for main dropdown menus: background & text for both regular and highlighted states, dividers
49$color-menu-bg: rgb(71,71,71);
50$color-menu-text: rgb(255,255,255);
51$color-menu-hilite-bg: rgb(178,178,178);
52$color-menu-hilite-text: rgb(36,36,36);
53$color-menu-divider: rgb(80,80,80);
54$color-menu-border: rgb(0,0,0);
55$color-menu-active-bg: rgb(181,122,10);
56
57
58// Colors for tools: background, text, how they interact with the UI
59$color-tool-bg: rgb(41,41,41);
60$color-tool-bg-active: rgb(178,178,178);
61$color-tool-border-selected: rgb(89,89,89);
62$color-tool-bg-a1: rgba(41,41,41,1);
63$color-tool-text: rgb(255,255,255);
64$color-tool-text-a1: rgba(255,255,255,1);
65$color-tool-separator-top: $color-divider-first;
66$color-tool-separator-middle: $color-divider-second;
67$color-tool-separator-bottom: $color-divider-third;
68$color-tool-select-bg: rgb(102,102,102);
69$color-tool-select-border: rgb(0,0,0);
70$color-tool-select-hover-bg: rgb(221,221,221);
71
72
73// Colors for panels: background & text, both regular and highlighted states, dividers, borders, shadows, etc.
74$color-panel-bg: $color-menu-bg;
75$color-panel-text: $color-menu-text;
76$color-panel-input: $color-panel-text;
77$color-panel-hilite-bg: $color-menu-hilite-bg;
78$color-panel-hilite-text: $color-menu-hilite-text;
79$color-panel-clickable: rgb(215,215,215); // used for editable items in their non-edit state, etc.
80$color-panel-border: $color-menu-border; // Border for panel and for block elements
81$color-panel-shadow: rgb(58,58,58); // Shadow for text and block elements
82$color-panel-input-bg: rgb(68, 68, 68);
83$color-panel-dividerlabel-bg: rgb(62, 62, 62);
84$color-panel-input-border: rgb(49, 49, 49);
85$color-panel-divider-top: rgb(62, 62, 62);
86$color-panel-divider: $color-menu-divider;
87$color-panel-divider-bottom: rgb(86, 86, 86);
88
89// Colors for scroll bars
90$color-sb-border: rgb(0,0,0);
91$color-sb-1: rgb(140,140,140);
92$color-sb-2: rgb(173,173,173);
93$color-sb-hover-1: rgb(190,190,190);
94$color-sb-hover-2: rgb(255,255,255);