wio

a wayland wm stylised after plan9 rio - forked from git.sr.ht/~srcmpwn/wio
git clone git://src.gearsix.net/wio
Log | Files | Refs | Atom | Submodules | README | LICENSE

colors.h (721B)


      1 #ifndef _WIO_COLORS_H
      2 #define _WIO_COLORS_H
      3 
      4 static const float background[4] = {
      5 	0x77 / 255.0f, 0x77 / 255.0f, 0x77 / 255.0f, 1.0f,
      6 };
      7 
      8 static const float selection_box[4] = {
      9 	0xFF / 255.0f, 0x0 / 255.0f, 0x0 / 255.0f, 1.0f,
     10 };
     11 
     12 static const float active_border[4] = {
     13 	0x50 / 255.0f, 0xA1 / 255.0f, 0xAD / 255.0f, 1.0f,
     14 };
     15 
     16 static const float inactive_border[4] = {
     17 	0x9C / 255.0f, 0xE9 / 255.0f, 0xE9 / 255.0f, 1.0f,
     18 };
     19 
     20 static const float menu_selected[4] = {
     21 	0x3D / 255.0f, 0x7D / 255.0f, 0x42 / 255.0f, 1.0f,
     22 };
     23 
     24 static const float menu_unselected[4] = {
     25 	0xEB / 255.0f, 0xFF / 255.0f, 0xEC / 255.0f, 1.0f,
     26 };
     27 
     28 static const float menu_border[4] = {
     29 	0x78 / 255.0f, 0xAD / 255.0f, 0x84 / 255.0f, 1.0f,
     30 };
     31 
     32 #endif