aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--makefile10
-rw-r--r--style.css16
2 files changed, 20 insertions, 6 deletions
diff --git a/makefile b/makefile
index 43f8eb5..f4b4c4c 100644
--- a/makefile
+++ b/makefile
@@ -6,15 +6,19 @@
# make uninstall
## C compiler
-CC=gcc # gcc: more options. Also I don't know whether tcc has error messages/debug options.
-## CC=tcc # tcc: much faster
+CC=gcc# gcc: more options. Also I don't know whether tcc has error messages/debug options.
+# CC=tcc # tcc: much faster, may not work with some options.
+## CC=clang # tcc: much faster, may not work with some options.
+
+## Compiler flags
+DEBUG= #'-g'
+# MULTICORE=-j 4#
## Main file
SRC=rose.c
## Dependencies
DEPS='webkit2gtk-4.0'
-DEBUG= #'-g'
INCS=`pkg-config --cflags ${DEPS}`
LIBS=`pkg-config --libs ${DEPS}`
diff --git a/style.css b/style.css
index 64333b5..5535c4e 100644
--- a/style.css
+++ b/style.css
@@ -1,18 +1,22 @@
+/*
@define-color Surface0 #313244;
@define-color Surface1 #45475a;
@define-color Base #1e1e2e;
@define-color Mantle #181825;
@define-color Lavender #b4befe;
-@define-color Text #cdd6f4;
-
+@define-color Text #cdd6f4;
+*/
* {
+ /* <https://github.com/bsundman/Yosembiance/blob/master/Yosembiance-Kraken-Blue/gtk-3.0/gtk-widgets.css~> */
padding: 0px;
margin: 0px;
outline-color: @Lavender;
- color: @Text;
+ /* color: @Text; */
+ color: black;
border-color: white;
font-size: 25px;
/*@Base; */
+ /* background: @Base !important; */
/* border-bottom-color: @Base; */
}
@@ -68,3 +72,9 @@ entry:focus {
padding-left: 10px;
}
+
+GtkPopover * {
+ color: black;
+}
+
+