remove most custom style (but leave large font)
gtk default already looks amazing
This commit is contained in:
parent
0f2ca9b9f7
commit
6d925ea23a
|
@ -407,7 +407,7 @@ int main(int argc, char** argv)
|
||||||
gtk_init(NULL, NULL); // <https://docs.gtk.org/gtk3/func.init.html>
|
gtk_init(NULL, NULL); // <https://docs.gtk.org/gtk3/func.init.html>
|
||||||
g_object_set(gtk_settings_get_default(), GTK_SETTINGS_CONFIG_H, NULL); // <https://docs.gtk.org/gobject/method.Object.set.html>
|
g_object_set(gtk_settings_get_default(), GTK_SETTINGS_CONFIG_H, NULL); // <https://docs.gtk.org/gobject/method.Object.set.html>
|
||||||
GtkCssProvider* css = gtk_css_provider_new();
|
GtkCssProvider* css = gtk_css_provider_new();
|
||||||
gtk_css_provider_load_from_path(css, "/usr/share/themes/rose/style.css", NULL);
|
gtk_css_provider_load_from_path(css, "/usr/share/themes/rosenrot/style.css", NULL);
|
||||||
gtk_style_context_add_provider_for_screen(gdk_screen_get_default(), GTK_STYLE_PROVIDER(css), 800);
|
gtk_style_context_add_provider_for_screen(gdk_screen_get_default(), GTK_STYLE_PROVIDER(css), 800);
|
||||||
|
|
||||||
/* Initialize GTK objects. These are declared as static globals at the top of this file */
|
/* Initialize GTK objects. These are declared as static globals at the top of this file */
|
||||||
|
|
28
style.css
28
style.css
|
@ -1,25 +1,9 @@
|
||||||
@define-color Surface0 #313244;
|
|
||||||
@define-color Surface1 #45475a;
|
|
||||||
@define-color Base #1e1e2e;
|
|
||||||
@define-color Mantle #181825;
|
|
||||||
@define-color Lavender #b4befe;
|
|
||||||
@define-color Text #cdd6f4;
|
|
||||||
|
|
||||||
* {
|
* {
|
||||||
padding: 0px;
|
|
||||||
margin: 0px;
|
|
||||||
outline-color: @Lavender;
|
|
||||||
color: @Text;
|
|
||||||
border-color: white;
|
|
||||||
font-size: 25px;
|
font-size: 25px;
|
||||||
/*@Base; */
|
/*@Base; */
|
||||||
/* border-bottom-color: @Base; */
|
/* border-bottom-color: @Base; */
|
||||||
}
|
}
|
||||||
|
|
||||||
window, notebook, headerbar {
|
|
||||||
background: @Base;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Make titlebar pretty gigantic. I'm pretty myopic. */
|
/* Make titlebar pretty gigantic. I'm pretty myopic. */
|
||||||
.titlebar {
|
.titlebar {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
|
@ -38,33 +22,21 @@ header * {
|
||||||
}
|
}
|
||||||
|
|
||||||
tabs {
|
tabs {
|
||||||
background-color: @Base;
|
|
||||||
padding: 3px;
|
padding: 3px;
|
||||||
outline-color: white;
|
|
||||||
border-color: @Base;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
tab {
|
tab {
|
||||||
background-color: @Base;
|
|
||||||
margin: 2px 5px 2px 0px;
|
margin: 2px 5px 2px 0px;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
font-size: 27px;
|
font-size: 27px;
|
||||||
/*border-color: white;
|
|
||||||
border-bottom-color: white;
|
|
||||||
outline-color: white;
|
|
||||||
margin: 5px;
|
|
||||||
padding-left: 10px;
|
|
||||||
padding-right: 10px; */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
entry {
|
entry {
|
||||||
background-color: @Surface0;
|
|
||||||
padding-left: 10px;
|
padding-left: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
entry:focus {
|
entry:focus {
|
||||||
background-color: @Surface0;
|
|
||||||
padding-left: 10px;
|
padding-left: 10px;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
70
user-scripts/styles/style-v3.css
Normal file
70
user-scripts/styles/style-v3.css
Normal file
|
@ -0,0 +1,70 @@
|
||||||
|
@define-color Surface0 #313244;
|
||||||
|
@define-color Surface1 #45475a;
|
||||||
|
@define-color Base #1e1e2e;
|
||||||
|
@define-color Mantle #181825;
|
||||||
|
@define-color Lavender #b4befe;
|
||||||
|
@define-color Text #cdd6f4;
|
||||||
|
|
||||||
|
* {
|
||||||
|
padding: 0px;
|
||||||
|
margin: 0px;
|
||||||
|
outline-color: @Lavender;
|
||||||
|
color: @Text;
|
||||||
|
border-color: white;
|
||||||
|
font-size: 25px;
|
||||||
|
/*@Base; */
|
||||||
|
/* border-bottom-color: @Base; */
|
||||||
|
}
|
||||||
|
|
||||||
|
window, notebook, headerbar {
|
||||||
|
background: @Base;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Make titlebar pretty gigantic. I'm pretty myopic. */
|
||||||
|
.titlebar {
|
||||||
|
padding: 10px;
|
||||||
|
font-size: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.titlebar * {
|
||||||
|
padding: 10px;
|
||||||
|
font-size: 27px;
|
||||||
|
}
|
||||||
|
|
||||||
|
header * {
|
||||||
|
font-size: 20px;
|
||||||
|
padding: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
tabs {
|
||||||
|
background-color: @Base;
|
||||||
|
padding: 3px;
|
||||||
|
outline-color: white;
|
||||||
|
border-color: @Base;
|
||||||
|
}
|
||||||
|
|
||||||
|
tab {
|
||||||
|
background-color: @Base;
|
||||||
|
margin: 2px 5px 2px 0px;
|
||||||
|
padding: 5px;
|
||||||
|
border-style: solid;
|
||||||
|
font-size: 27px;
|
||||||
|
/*border-color: white;
|
||||||
|
border-bottom-color: white;
|
||||||
|
outline-color: white;
|
||||||
|
margin: 5px;
|
||||||
|
padding-left: 10px;
|
||||||
|
padding-right: 10px; */
|
||||||
|
}
|
||||||
|
|
||||||
|
entry {
|
||||||
|
background-color: @Surface0;
|
||||||
|
padding-left: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
entry:focus {
|
||||||
|
background-color: @Surface0;
|
||||||
|
padding-left: 10px;
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user