Skip to content

Commit d7126c5

Browse files
committed
feat: add Onyx theme
1 parent 2854093 commit d7126c5

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed

plugins/plugin-codeflare/theme.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55
"css": ["themes/Mirage.scss"],
66
"style": "dark"
77
},
8+
{
9+
"name": "Onyx",
10+
"css": ["themes/Onyx.scss"],
11+
"style": "dark"
12+
},
813
{
914
"name": "Tuatara",
1015
"css": ["themes/Tuatara.scss"],
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
/*
2+
* Copyright 2021 The Kubernetes Authors
3+
*
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+
@import "fonts";
18+
@import "common";
19+
20+
$Theme: Onyx;
21+
22+
$fg: #ffffff;
23+
$fg3: #cbcbcb;
24+
$bg: #0e0e0e;
25+
$bg2: lighten($bg, 10%);
26+
$latency-0: #60b1aa;
27+
$latency-1: #c5e6e3;
28+
$latency-2: #c83b22;
29+
$latency-3: #f2bba3;
30+
$latency-4: #d76344;
31+
$latency-5: #929292;
32+
33+
$color-red: $latency-2;
34+
$color-cyan: $latency-1;
35+
36+
@include Theme($Theme);

0 commit comments

Comments
 (0)