Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Ebb <matt@mke3.net>2008-11-19 06:15:52 +0300
committerMatt Ebb <matt@mke3.net>2008-11-19 06:15:52 +0300
commitecde558252727584cdcd20b42c3d727ecbe26af2 (patch)
tree084013424bb26551f770a96973258db51f41f6c8 /source/blender/editors/interface/resources.c
parent13ac9079cccff2364c42ffdc708ea951dbe410ca (diff)
Started work on an updated UI theme
Diffstat (limited to 'source/blender/editors/interface/resources.c')
-rw-r--r--source/blender/editors/interface/resources.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/source/blender/editors/interface/resources.c b/source/blender/editors/interface/resources.c
index bfb2d39fbb5..a5fe8055c61 100644
--- a/source/blender/editors/interface/resources.c
+++ b/source/blender/editors/interface/resources.c
@@ -348,15 +348,15 @@ void ui_theme_init_userdef(void)
/* UI buttons (todo) */
SETCOL(btheme->tui.outline, 0xA0,0xA0,0xA0, 255);
- SETCOL(btheme->tui.neutral, 0xA0,0xA0,0xA0, 255);
- SETCOL(btheme->tui.action, 0xAD,0xA0,0x93, 255);
- SETCOL(btheme->tui.setting, 0x8A,0x9E,0xA1, 255);
- SETCOL(btheme->tui.setting1, 0xA1,0xA1,0xAE, 255);
- SETCOL(btheme->tui.setting2, 0xA1,0x99,0xA7, 255);
- SETCOL(btheme->tui.num, 0x90,0x90,0x90, 255);
- SETCOL(btheme->tui.textfield, 0x90,0x90,0x90, 255);
- SETCOL(btheme->tui.textfield_hi,0xc6,0x77,0x77, 255);
- SETCOL(btheme->tui.popup, 0xA0,0xA0,0xA0, 255);
+ SETCOL(btheme->tui.neutral, 180, 180, 180, 255);
+ SETCOL(btheme->tui.action, 180, 180, 180, 255);
+ SETCOL(btheme->tui.setting, 180, 180, 180, 255);
+ SETCOL(btheme->tui.setting1, 180, 180, 180, 255);
+ SETCOL(btheme->tui.setting2, 180, 180, 180, 255);
+ SETCOL(btheme->tui.num, 143, 143, 143, 255);
+ SETCOL(btheme->tui.textfield, 143, 142, 143, 255);
+ SETCOL(btheme->tui.textfield_hi,255, 151, 26, 255);
+ SETCOL(btheme->tui.popup, 174, 174, 174, 255);
SETCOL(btheme->tui.text, 0,0,0, 255);
SETCOL(btheme->tui.text_hi, 255, 255, 255, 255);
@@ -366,7 +366,7 @@ void ui_theme_init_userdef(void)
SETCOL(btheme->tui.menu_hilite, 0x7F,0x7F,0x7F, 255);
SETCOL(btheme->tui.menu_text, 0, 0, 0, 255);
SETCOL(btheme->tui.menu_text_hi, 255, 255, 255, 255);
- btheme->tui.but_drawtype= TH_SHADED;
+ btheme->tui.but_drawtype= TH_ROUNDSHADED;
BLI_strncpy(btheme->tui.iconfile, "", sizeof(btheme->tui.iconfile));