mirror of
https://github.com/jjsullivan5196/wvkbd.git
synced 2025-04-19 23:36:46 +02:00
Use a simple transparency value
This commit is contained in:
parent
aa258a01dd
commit
c8bd29ecd1
13
config.def.h
13
config.def.h
@ -2,20 +2,21 @@
|
|||||||
#define config_def_h_INCLUDED
|
#define config_def_h_INCLUDED
|
||||||
|
|
||||||
static const char *default_font = "Monospace 14";
|
static const char *default_font = "Monospace 14";
|
||||||
|
static const int transparency = 225;
|
||||||
|
|
||||||
struct clr_scheme scheme = {
|
struct clr_scheme scheme = {
|
||||||
/* colors */
|
/* colors */
|
||||||
.bg = {.bgra = {15, 15, 15, 225}},
|
.bg = {.bgra = {15, 15, 15, transparency}},
|
||||||
.fg = {.bgra = {45, 45, 45, 225}},
|
.fg = {.bgra = {45, 45, 45, transparency}},
|
||||||
.high = {.bgra = {100, 100, 100, 225}},
|
.high = {.bgra = {100, 100, 100, transparency}},
|
||||||
.swipe = {.bgra = {100, 255, 100, 64}},
|
.swipe = {.bgra = {100, 255, 100, 64}},
|
||||||
.text = {.color = UINT32_MAX},
|
.text = {.color = UINT32_MAX},
|
||||||
};
|
};
|
||||||
struct clr_scheme scheme1 = {
|
struct clr_scheme scheme1 = {
|
||||||
/* colors */
|
/* colors */
|
||||||
.bg = {.bgra = {15, 15, 15, 225}},
|
.bg = {.bgra = {15, 15, 15, transparency}},
|
||||||
.fg = {.bgra = {32, 32, 32, 225}},
|
.fg = {.bgra = {32, 32, 32, transparency}},
|
||||||
.high = {.bgra = {100, 100, 100, 225}},
|
.high = {.bgra = {100, 100, 100, transparency}},
|
||||||
.swipe = {.bgra = {100, 255, 100, 64}},
|
.swipe = {.bgra = {100, 255, 100, 64}},
|
||||||
.text = {.color = UINT32_MAX},
|
.text = {.color = UINT32_MAX},
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user