Skip to content

Commit a2645ff

Browse files
Add files via upload
1 parent 8c43689 commit a2645ff

4 files changed

Lines changed: 120 additions & 0 deletions

File tree

bin/styles/THEME_BLUE.c

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
[start_nk_style_v1]
2+
table[NK_COLOR_TEXT] = nk_rgba(20, 20, 20, 255);
3+
table[NK_COLOR_WINDOW] = nk_rgba(202, 212, 214, 215);
4+
table[NK_COLOR_HEADER] = nk_rgba(137, 182, 224, 220);
5+
table[NK_COLOR_BORDER] = nk_rgba(140, 159, 173, 255);
6+
table[NK_COLOR_BUTTON] = nk_rgba(137, 182, 224, 255);
7+
table[NK_COLOR_BUTTON_HOVER] = nk_rgba(142, 187, 229, 255);
8+
table[NK_COLOR_BUTTON_ACTIVE] = nk_rgba(147, 192, 234, 255);
9+
table[NK_COLOR_TOGGLE] = nk_rgba(177, 210, 210, 255);
10+
table[NK_COLOR_TOGGLE_HOVER] = nk_rgba(182, 215, 215, 255);
11+
table[NK_COLOR_TOGGLE_CURSOR] = nk_rgba(137, 182, 224, 255);
12+
table[NK_COLOR_SELECT] = nk_rgba(177, 210, 210, 255);
13+
table[NK_COLOR_SELECT_ACTIVE] = nk_rgba(137, 182, 224, 255);
14+
table[NK_COLOR_SLIDER] = nk_rgba(177, 210, 210, 255);
15+
table[NK_COLOR_SLIDER_CURSOR] = nk_rgba(137, 182, 224, 245);
16+
table[NK_COLOR_SLIDER_CURSOR_HOVER] = nk_rgba(142, 188, 229, 255);
17+
table[NK_COLOR_SLIDER_CURSOR_ACTIVE] = nk_rgba(147, 193, 234, 255);
18+
table[NK_COLOR_PROPERTY] = nk_rgba(210, 210, 210, 255);
19+
table[NK_COLOR_EDIT] = nk_rgba(210, 210, 210, 225);
20+
table[NK_COLOR_EDIT_CURSOR] = nk_rgba(20, 20, 20, 255);
21+
table[NK_COLOR_COMBO] = nk_rgba(210, 210, 210, 255);
22+
table[NK_COLOR_CHART] = nk_rgba(210, 210, 210, 255);
23+
table[NK_COLOR_CHART_COLOR] = nk_rgba(137, 182, 224, 255);
24+
table[NK_COLOR_CHART_COLOR_HIGHLIGHT] = nk_rgba( 255, 0, 0, 255);
25+
table[NK_COLOR_SCROLLBAR] = nk_rgba(190, 200, 200, 255);
26+
table[NK_COLOR_SCROLLBAR_CURSOR] = nk_rgba(64, 84, 95, 255);
27+
table[NK_COLOR_SCROLLBAR_CURSOR_HOVER] = nk_rgba(70, 90, 100, 255);
28+
table[NK_COLOR_SCROLLBAR_CURSOR_ACTIVE] = nk_rgba(75, 95, 105, 255);
29+
table[NK_COLOR_TAB_HEADER] = nk_rgba(156, 193, 220, 255);
30+
[end_nk_style_v1]

bin/styles/THEME_DARK.c

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
[start_nk_style_v1]
2+
table[NK_COLOR_TEXT] = nk_rgba(210, 210, 210, 255);
3+
table[NK_COLOR_WINDOW] = nk_rgba(57, 67, 71, 215);
4+
table[NK_COLOR_HEADER] = nk_rgba(51, 51, 56, 220);
5+
table[NK_COLOR_BORDER] = nk_rgba(46, 46, 46, 255);
6+
table[NK_COLOR_BUTTON] = nk_rgba(48, 83, 111, 255);
7+
table[NK_COLOR_BUTTON_HOVER] = nk_rgba(58, 93, 121, 255);
8+
table[NK_COLOR_BUTTON_ACTIVE] = nk_rgba(63, 98, 126, 255);
9+
table[NK_COLOR_TOGGLE] = nk_rgba(50, 58, 61, 255);
10+
table[NK_COLOR_TOGGLE_HOVER] = nk_rgba(45, 53, 56, 255);
11+
table[NK_COLOR_TOGGLE_CURSOR] = nk_rgba(48, 83, 111, 255);
12+
table[NK_COLOR_SELECT] = nk_rgba(57, 67, 61, 255);
13+
table[NK_COLOR_SELECT_ACTIVE] = nk_rgba(48, 83, 111, 255);
14+
table[NK_COLOR_SLIDER] = nk_rgba(50, 58, 61, 255);
15+
table[NK_COLOR_SLIDER_CURSOR] = nk_rgba(48, 83, 111, 245);
16+
table[NK_COLOR_SLIDER_CURSOR_HOVER] = nk_rgba(53, 88, 116, 255);
17+
table[NK_COLOR_SLIDER_CURSOR_ACTIVE] = nk_rgba(58, 93, 121, 255);
18+
table[NK_COLOR_PROPERTY] = nk_rgba(50, 58, 61, 255);
19+
table[NK_COLOR_EDIT] = nk_rgba(50, 58, 61, 225);
20+
table[NK_COLOR_EDIT_CURSOR] = nk_rgba(210, 210, 210, 255);
21+
table[NK_COLOR_COMBO] = nk_rgba(50, 58, 61, 255);
22+
table[NK_COLOR_CHART] = nk_rgba(50, 58, 61, 255);
23+
table[NK_COLOR_CHART_COLOR] = nk_rgba(48, 83, 111, 255);
24+
table[NK_COLOR_CHART_COLOR_HIGHLIGHT] = nk_rgba(255, 0, 0, 255);
25+
table[NK_COLOR_SCROLLBAR] = nk_rgba(50, 58, 61, 255);
26+
table[NK_COLOR_SCROLLBAR_CURSOR] = nk_rgba(48, 83, 111, 255);
27+
table[NK_COLOR_SCROLLBAR_CURSOR_HOVER] = nk_rgba(53, 88, 116, 255);
28+
table[NK_COLOR_SCROLLBAR_CURSOR_ACTIVE] = nk_rgba(58, 93, 121, 255);
29+
table[NK_COLOR_TAB_HEADER] = nk_rgba(48, 83, 111, 255);
30+
[end_nk_style_v1]

bin/styles/THEME_RED.c

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
[start_nk_style_v1]
2+
table[NK_COLOR_TEXT] = nk_rgba(190, 190, 190, 255);
3+
table[NK_COLOR_WINDOW] = nk_rgba(30, 33, 40, 215);
4+
table[NK_COLOR_HEADER] = nk_rgba(181, 45, 69, 220);
5+
table[NK_COLOR_BORDER] = nk_rgba(51, 55, 67, 255);
6+
table[NK_COLOR_BUTTON] = nk_rgba(181, 45, 69, 255);
7+
table[NK_COLOR_BUTTON_HOVER] = nk_rgba(190, 50, 70, 255);
8+
table[NK_COLOR_BUTTON_ACTIVE] = nk_rgba(195, 55, 75, 255);
9+
table[NK_COLOR_TOGGLE] = nk_rgba(51, 55, 67, 255);
10+
table[NK_COLOR_TOGGLE_HOVER] = nk_rgba(45, 60, 60, 255);
11+
table[NK_COLOR_TOGGLE_CURSOR] = nk_rgba(181, 45, 69, 255);
12+
table[NK_COLOR_SELECT] = nk_rgba(51, 55, 67, 255);
13+
table[NK_COLOR_SELECT_ACTIVE] = nk_rgba(181, 45, 69, 255);
14+
table[NK_COLOR_SLIDER] = nk_rgba(51, 55, 67, 255);
15+
table[NK_COLOR_SLIDER_CURSOR] = nk_rgba(181, 45, 69, 255);
16+
table[NK_COLOR_SLIDER_CURSOR_HOVER] = nk_rgba(186, 50, 74, 255);
17+
table[NK_COLOR_SLIDER_CURSOR_ACTIVE] = nk_rgba(191, 55, 79, 255);
18+
table[NK_COLOR_PROPERTY] = nk_rgba(51, 55, 67, 255);
19+
table[NK_COLOR_EDIT] = nk_rgba(51, 55, 67, 225);
20+
table[NK_COLOR_EDIT_CURSOR] = nk_rgba(190, 190, 190, 255);
21+
table[NK_COLOR_COMBO] = nk_rgba(51, 55, 67, 255);
22+
table[NK_COLOR_CHART] = nk_rgba(51, 55, 67, 255);
23+
table[NK_COLOR_CHART_COLOR] = nk_rgba(170, 40, 60, 255);
24+
table[NK_COLOR_CHART_COLOR_HIGHLIGHT] = nk_rgba( 255, 0, 0, 255);
25+
table[NK_COLOR_SCROLLBAR] = nk_rgba(30, 33, 40, 255);
26+
table[NK_COLOR_SCROLLBAR_CURSOR] = nk_rgba(64, 84, 95, 255);
27+
table[NK_COLOR_SCROLLBAR_CURSOR_HOVER] = nk_rgba(70, 90, 100, 255);
28+
table[NK_COLOR_SCROLLBAR_CURSOR_ACTIVE] = nk_rgba(75, 95, 105, 255);
29+
table[NK_COLOR_TAB_HEADER] = nk_rgba(181, 45, 69, 220);
30+
[end_nk_style_v1]

bin/styles/THEME_WHITE.c

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
[start_nk_style_v1]
2+
table[NK_COLOR_TEXT] = nk_rgba(70, 70, 70, 255);
3+
table[NK_COLOR_WINDOW] = nk_rgba(175, 175, 175, 255);
4+
table[NK_COLOR_HEADER] = nk_rgba(175, 175, 175, 255);
5+
table[NK_COLOR_BORDER] = nk_rgba(0, 0, 0, 255);
6+
table[NK_COLOR_BUTTON] = nk_rgba(185, 185, 185, 255);
7+
table[NK_COLOR_BUTTON_HOVER] = nk_rgba(170, 170, 170, 255);
8+
table[NK_COLOR_BUTTON_ACTIVE] = nk_rgba(160, 160, 160, 255);
9+
table[NK_COLOR_TOGGLE] = nk_rgba(150, 150, 150, 255);
10+
table[NK_COLOR_TOGGLE_HOVER] = nk_rgba(120, 120, 120, 255);
11+
table[NK_COLOR_TOGGLE_CURSOR] = nk_rgba(175, 175, 175, 255);
12+
table[NK_COLOR_SELECT] = nk_rgba(190, 190, 190, 255);
13+
table[NK_COLOR_SELECT_ACTIVE] = nk_rgba(175, 175, 175, 255);
14+
table[NK_COLOR_SLIDER] = nk_rgba(190, 190, 190, 255);
15+
table[NK_COLOR_SLIDER_CURSOR] = nk_rgba(80, 80, 80, 255);
16+
table[NK_COLOR_SLIDER_CURSOR_HOVER] = nk_rgba(70, 70, 70, 255);
17+
table[NK_COLOR_SLIDER_CURSOR_ACTIVE] = nk_rgba(60, 60, 60, 255);
18+
table[NK_COLOR_PROPERTY] = nk_rgba(175, 175, 175, 255);
19+
table[NK_COLOR_EDIT] = nk_rgba(150, 150, 150, 255);
20+
table[NK_COLOR_EDIT_CURSOR] = nk_rgba(0, 0, 0, 255);
21+
table[NK_COLOR_COMBO] = nk_rgba(175, 175, 175, 255);
22+
table[NK_COLOR_CHART] = nk_rgba(160, 160, 160, 255);
23+
table[NK_COLOR_CHART_COLOR] = nk_rgba(45, 45, 45, 255);
24+
table[NK_COLOR_CHART_COLOR_HIGHLIGHT] = nk_rgba( 255, 0, 0, 255);
25+
table[NK_COLOR_SCROLLBAR] = nk_rgba(180, 180, 180, 255);
26+
table[NK_COLOR_SCROLLBAR_CURSOR] = nk_rgba(140, 140, 140, 255);
27+
table[NK_COLOR_SCROLLBAR_CURSOR_HOVER] = nk_rgba(150, 150, 150, 255);
28+
table[NK_COLOR_SCROLLBAR_CURSOR_ACTIVE] = nk_rgba(160, 160, 160, 255);
29+
table[NK_COLOR_TAB_HEADER] = nk_rgba(180, 180, 180, 255);
30+
[end_nk_style_v1]

0 commit comments

Comments
 (0)