mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
33 lines
565 B
C++
33 lines
565 B
C++
#pragma once
|
|
|
|
#include <X11/Xft/Xft.h>
|
|
|
|
#include "common.hpp"
|
|
#include "utils/color.hpp"
|
|
|
|
LEMONBUDDY_NS
|
|
|
|
class color {
|
|
public:
|
|
explicit color(string hex);
|
|
|
|
string source() const;
|
|
|
|
operator XRenderColor() const;
|
|
operator string() const;
|
|
operator uint32_t() const;
|
|
|
|
static color parse(string input, color fallback);
|
|
static color parse(string input);
|
|
|
|
protected:
|
|
uint32_t m_color;
|
|
string m_source;
|
|
};
|
|
|
|
extern map<string, class color> g_colorstore;
|
|
extern color g_colorempty;
|
|
extern color g_colorblack;
|
|
extern color g_colorwhite;
|
|
|
|
LEMONBUDDY_NS_END
|