parent
84df2273eb
commit
8dc67aaa16
10
makefile
10
makefile
|
@ -6,19 +6,15 @@
|
||||||
# make uninstall
|
# make uninstall
|
||||||
|
|
||||||
## C compiler
|
## C compiler
|
||||||
CC=gcc# gcc: more options. Also I don't know whether tcc has error messages/debug options.
|
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=tcc # tcc: much faster
|
||||||
## CC=clang # tcc: much faster, may not work with some options.
|
|
||||||
|
|
||||||
## Compiler flags
|
|
||||||
DEBUG= #'-g'
|
|
||||||
# MULTICORE=-j 4#
|
|
||||||
|
|
||||||
## Main file
|
## Main file
|
||||||
SRC=rose.c
|
SRC=rose.c
|
||||||
|
|
||||||
## Dependencies
|
## Dependencies
|
||||||
DEPS='webkit2gtk-4.0'
|
DEPS='webkit2gtk-4.0'
|
||||||
|
DEBUG= #'-g'
|
||||||
|
|
||||||
INCS=`pkg-config --cflags ${DEPS}`
|
INCS=`pkg-config --cflags ${DEPS}`
|
||||||
LIBS=`pkg-config --libs ${DEPS}`
|
LIBS=`pkg-config --libs ${DEPS}`
|
||||||
|
|
14
style.css
14
style.css
|
@ -1,22 +1,18 @@
|
||||||
/*
|
|
||||||
@define-color Surface0 #313244;
|
@define-color Surface0 #313244;
|
||||||
@define-color Surface1 #45475a;
|
@define-color Surface1 #45475a;
|
||||||
@define-color Base #1e1e2e;
|
@define-color Base #1e1e2e;
|
||||||
@define-color Mantle #181825;
|
@define-color Mantle #181825;
|
||||||
@define-color Lavender #b4befe;
|
@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;
|
padding: 0px;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
outline-color: @Lavender;
|
outline-color: @Lavender;
|
||||||
/* color: @Text; */
|
color: @Text;
|
||||||
color: black;
|
|
||||||
border-color: white;
|
border-color: white;
|
||||||
font-size: 25px;
|
font-size: 25px;
|
||||||
/*@Base; */
|
/*@Base; */
|
||||||
/* background: @Base !important; */
|
|
||||||
/* border-bottom-color: @Base; */
|
/* border-bottom-color: @Base; */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -72,9 +68,3 @@ entry:focus {
|
||||||
padding-left: 10px;
|
padding-left: 10px;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
GtkPopover * {
|
|
||||||
color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user