Configurable colors

This commit is contained in:
Raphael Robatsch 2021-10-22 15:42:42 +02:00
commit 120af1612f
4 changed files with 26 additions and 7 deletions

View file

@ -1,7 +1,13 @@
// somebar - dwl bar
// See LICENSE file for copyright and license details.
#pragma once
#include "common.hpp"
constexpr int barSize = 26;
constexpr bool topbar = 1;
constexpr int paddingX = 10;
constexpr int paddingY = 3;
constexpr ColorScheme colorInactive = {QColor(255, 255, 255), QColor(0, 0, 0)};
constexpr ColorScheme colorActive = {QColor(255, 255, 255), QColor(0, 0, 255)};