blob: 2f2f829499a71fc4cad9de5eadbc9a334da406a7 [file] [log] [blame]
Matteo Scandolofb46ae62017-08-08 09:10:50 -07001
2/*
3 * Copyright 2017-present Open Networking Foundation
4
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8
9 * http://www.apache.org/licenses/LICENSE-2.0
10
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18
Matteo Scandolo9d7940c2017-01-19 18:28:43 -080019// COLORS
20
21//$gray_dark: darken($background-color, 2%);
22//$gray_med: #353741;
23//$gray_light: #3A3D45;
24
25$color-accent: #f6a821;
26$color-font: #949ba2;
27
28$background-dark-color: #24262d;
29$background-color: #2f323b;
30$background-med-color: darken($background-color, 2%);
31$background-light-color: #44464f;
32$navigation-color: $background-med-color;
33$border-color: lighten($background-color, 6%);
34$color-placeholder: darken($color-font, 14%);
35
Matteo Scandolo0c61c9b2017-03-03 11:49:18 -080036$panel-filled-bg: rgba(68,70,79,0.5);
37
Matteo Scandolo9d7940c2017-01-19 18:28:43 -080038$color-primary: #0F83C9;
39$color-info: #56C0E0;
40$color-warning: #f7af3e;
41$color-danger: #DB524B;
42$color-success: #1bbf89;
43
44// SIZES
45$padding: 10px;
46$navigation-width: 200px;