blob: 74d216e8a2a2cd233735a8eeed7d278e8ea32cd2 [file] [log] [blame]
Simon Hunta1028c42017-02-07 20:08:03 -08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2017-present Open Networking Foundation
Simon Hunta1028c42017-02-07 20:08:03 -08003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17
18/* ------------------------------------------------- */
19/* Sprite Layer */
20
Simon Hunta1028c42017-02-07 20:08:03 -080021
22#ov-topo svg #topo-sprites .gold1 use {
23 stroke: #fda;
24 fill: none;
25}
26#ov-topo svg #topo-sprites .gold1 text {
27 fill: #eda;
28}
29
30#ov-topo svg #topo-sprites .blue1 use {
31 stroke: #bbd;
32 fill: none;
33}
34#ov-topo svg #topo-sprites .blue1 text {
35 fill: #cce;
36}
37
38#ov-topo svg #topo-sprites .gray1 use {
39 stroke: #ccc;
40 fill: none;
41}
42#ov-topo svg #topo-sprites .gray1 text {
43 fill: #ddd;
44}
45
46/* fills */
47#ov-topo svg #topo-sprites use.fill-gray2 {
48 fill: #eee;
49}
50
51#ov-topo svg #topo-sprites use.fill-blue2 {
52 fill: #bce;
Simon Huntbb0f2672017-03-28 18:52:59 -070053}
54
55
56/* ========== DARK Theme ========== */
57
58.dark #ov-topo svg #topo-sprites .gold1 use {
59 stroke: #541;
60 fill: none;
61}
62
63.dark #ov-topo svg #topo-sprites .gold1 text {
64 fill: #543;
65}
66
67.dark #ov-topo svg #topo-sprites .blue1 use {
68 stroke: #445;
69 fill: none;
70}
71
72.dark #ov-topo svg #topo-sprites .blue1 text {
73 fill: #446;
74}
75
76.dark #ov-topo svg #topo-sprites .gray1 use {
77 stroke: #333;
78 fill: none;
79}
80
81.dark #ov-topo svg #topo-sprites .gray1 text {
82 fill: #444;
83}
84
85/* fills */
86
87.dark #ov-topo svg #topo-sprites use.fill-gray2 {
88 fill: #444;
89}
90
91
92.dark #ov-topo svg #topo-sprites use.fill-blue2 {
93 fill: #447;
94}