Configurable font

This commit is contained in:
Raphael Robatsch 2021-10-22 15:49:09 +02:00
commit 41e2b7286d
3 changed files with 23 additions and 10 deletions

View file

@ -4,10 +4,14 @@
#pragma once
#include "common.hpp"
constexpr int barSize = 26;
constexpr bool topbar = 1;
constexpr int paddingX = 10;
constexpr int paddingY = 3;
constexpr const char *fontFamily = "Source Sans Pro";
constexpr int fontSizePt = 12;
constexpr bool fontBold = true;
constexpr ColorScheme colorInactive = {QColor(255, 255, 255), QColor(0, 0, 0)};
constexpr ColorScheme colorActive = {QColor(255, 255, 255), QColor(0, 0, 255)};