GUI -- Cleaned up 'muted' instance colors, and CSS for 'offline' instances.
Change-Id: I1ba8118bc77c05356c49205019c9ebec527f8dbf
Showing
2 changed files
with
9 additions
and
12 deletions
... | @@ -121,17 +121,14 @@ | ... | @@ -121,17 +121,14 @@ |
121 | 121 | ||
122 | // --- Ordinal scales for 7 values. | 122 | // --- Ordinal scales for 7 values. |
123 | // TODO: tune colors for light and dark themes | 123 | // TODO: tune colors for light and dark themes |
124 | + // Note: These colors look good on the white background. Still, need to tune for dark. | ||
124 | 125 | ||
125 | - // blue purple pink mustard cyan green red | 126 | + // blue brown purple sea green brick red dark teal lime |
126 | - //var lightNorm = ['#1f77b4', '#9467bd', '#e377c2', '#bcbd22', '#17becf', '#2ca02c', '#d62728'], | 127 | + var lightNorm = ['#3E5780', '#78533B', '#8A2979', '#018D61', '#CB4D28', '#006D73', '#56AF00'], |
127 | - // lightMute = ['#aec7e8', '#c5b0d5', '#f7b6d2', '#dbdb8d', '#9edae5', '#98df8a', '#ff9896'], | 128 | + lightMute = ['#A8B8CC', '#CCB3A8', '#D19FCE', '#96D6BF', '#FFC2BD', '#8FCCCA', '#CAEAA4'], |
128 | - // darkNorm = ['#1f77b4', '#9467bd', '#e377c2', '#bcbd22', '#17becf', '#2ca02c', '#d62728'], | ||
129 | - // darkMute = ['#aec7e8', '#c5b0d5', '#f7b6d2', '#dbdb8d', '#9edae5', '#98df8a', '#ff9896']; | ||
130 | 129 | ||
131 | - var lightNorm = ['#3F587F', '#77533D', '#C94E30', '#892D78', '#138C62', '#006D72', '#59AD00'], | 130 | + darkNorm = ['#3E5780', '#78533B', '#8A2979', '#018D61', '#CB4D28', '#006D73', '#56AF00'], |
132 | - lightMute = ['#56657C', '#665F57', '#C68C7F', '#876E82', '#68897E', '#4E6F70', '#93AA7B'], | 131 | + darkMute = ['#A8B8CC', '#CCB3A8', '#D19FCE', '#96D6BF', '#FFC2BD', '#8FCCCA', '#CAEAA4']; |
133 | - darkNorm = ['#3F587F', '#77533D', '#C94E30', '#892D78', '#138C62', '#006D72', '#59AD00'], | ||
134 | - darkMute = ['#56657C', '#665F57', '#C68C7F', '#876E82', '#68897E', '#4E6F70', '#93AA7B']; | ||
135 | 132 | ||
136 | function cat7() { | 133 | function cat7() { |
137 | var colors = { | 134 | var colors = { | ... | ... |
... | @@ -330,7 +330,7 @@ svg .node.host circle { | ... | @@ -330,7 +330,7 @@ svg .node.host circle { |
330 | #topo-oibox .online svg rect { | 330 | #topo-oibox .online svg rect { |
331 | opacity: 1; | 331 | opacity: 1; |
332 | fill: #9cf; | 332 | fill: #9cf; |
333 | - stroke: #357; | 333 | + stroke: #555; |
334 | } | 334 | } |
335 | 335 | ||
336 | #topo-oibox svg .glyphIcon { | 336 | #topo-oibox svg .glyphIcon { |
... | @@ -342,7 +342,7 @@ svg .node.host circle { | ... | @@ -342,7 +342,7 @@ svg .node.host circle { |
342 | } | 342 | } |
343 | 343 | ||
344 | #topo-oibox svg .badgeIcon { | 344 | #topo-oibox svg .badgeIcon { |
345 | - fill: #aaa; | 345 | + fill: #777; |
346 | fill-rule: evenodd; | 346 | fill-rule: evenodd; |
347 | } | 347 | } |
348 | 348 | ||
... | @@ -352,7 +352,7 @@ svg .node.host circle { | ... | @@ -352,7 +352,7 @@ svg .node.host circle { |
352 | 352 | ||
353 | #topo-oibox svg text { | 353 | #topo-oibox svg text { |
354 | text-anchor: middle; | 354 | text-anchor: middle; |
355 | - fill: #888; | 355 | + fill: #777; |
356 | } | 356 | } |
357 | #topo-oibox .online svg text { | 357 | #topo-oibox .online svg text { |
358 | fill: #eee; | 358 | fill: #eee; | ... | ... |
-
Please register or login to post a comment