Skip to content
This repository was archived by the owner on Oct 3, 2022. It is now read-only.

Commit

Permalink
Update Dark Theme (clearly not inspired by blender)
Browse files Browse the repository at this point in the history
  • Loading branch information
pegvin committed Jul 18, 2022
1 parent 5462441 commit 08b8388
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 13 deletions.
10 changes: 5 additions & 5 deletions data/themes/dark.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ name=dark
[base]
background=#2D2D2DFF
outline=#FF
inner=#2B3944FF
inner_selected=#516882FF
text=#C8C8C8FF
text_selected=#FF
inner=#595959FF
inner_selected=#568BDBFF
text=#CCCCCCFF
text_selected=#FFFFFFFF

[widget]

Expand All @@ -16,4 +16,4 @@ background=#FF
inner=#2D2D2DFF

[menu]
inner=#5A6E6EFF
inner=#353535FF
2 changes: 1 addition & 1 deletion scripts/arch/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Maintainer: Aditya Mishra <https://github.com/pegvin/goxel2/issues>
pkgname=goxel2-git
pkgver=0.11.1
pkgver=0.12.1
pkgrel=2 # Update if you changed something but that is so minor change you don't want to change the version
pkgdesc="a cross-platform 3d voxel art editor"
arch=('i686' 'x86_64')
Expand Down
12 changes: 6 additions & 6 deletions src/assets/themes.inl
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
/* This file is autogenerated by tools/create_assets.py */
{.path = "data/themes/dark.ini", .size = 206, .data =
{.path = "data/themes/dark.ini", .size = 212, .data =
"[theme]\n"
"name=dark\n"
"\n"
"[base]\n"
"background=#2D2D2DFF\n"
"outline=#FF\n"
"inner=#2B3944FF\n"
"inner_selected=#516882FF\n"
"text=#C8C8C8FF\n"
"text_selected=#FF\n"
"inner=#595959FF\n"
"inner_selected=#568BDBFF\n"
"text=#CCCCCCFF\n"
"text_selected=#FFFFFFFF\n"
"\n"
"[widget]\n"
"\n"
Expand All @@ -18,7 +18,7 @@
"inner=#2D2D2DFF\n"
"\n"
"[menu]\n"
"inner=#5A6E6EFF\n"
"inner=#353535FF\n"
""
},
{.path = "data/themes/original.ini", .size = 253, .data =
Expand Down
1 change: 1 addition & 0 deletions src/camera.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ camera_t *camera_new(const char *name)
mat4_set_identity(cam->mat);
cam->dist = 128;
cam->aspect = 1;
cam->ortho = false;
mat4_itranslate(cam->mat, 0, 0, cam->dist);
camera_turntable(cam, M_PI / 4, M_PI / 4);
return cam;
Expand Down
2 changes: 1 addition & 1 deletion src/goxel.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
#include <stdlib.h>
#include <string.h>

#define GOXEL_VERSION_STR "0.11.1"
#define GOXEL_VERSION_STR "0.12.1"
#ifndef GOXEL_DEFAULT_THEME
# define GOXEL_DEFAULT_THEME "dark"
#endif
Expand Down

0 comments on commit 08b8388

Please sign in to comment.