Skip to content

Instantly share code, notes, and snippets.

@chaitanya-lakkundi
Last active May 14, 2017 04:51
Show Gist options
  • Save chaitanya-lakkundi/683336907cc4d60750b934c8cb310b57 to your computer and use it in GitHub Desktop.
Save chaitanya-lakkundi/683336907cc4d60750b934c8cb310b57 to your computer and use it in GitHub Desktop.
CSS Themes for Kupfer Launcher
These files are to be copied into ~/.local/share/kupfer directory.
custom_theme plugin will automatically detect these themes and present a choice.
Any user can write custom css and share.
#kupfer {
background: #353535;
color: white;
}
.matchview {
border-radius: 0.6em;
}
#kupfer-preedit {
padding: 0 0 0 0;
}
#kupfer-preedit.hidden {
border-width: 0 0 0 0;
padding: 0 0 0 0 ;
margin: 0 0 0 0;
outline-width: 0;
min-height: 0;
min-width: 0;
}
#kupfer-object-pane {
}
#kupfer-action-pane {
}
#kupfer-indirect-object-pane {
}
#kupfer-list {
}
#kupfer-list-view {
background-color: #292929;
color: white;
}
#kupfer-list-view:selected {
background-color: @theme_selected_bg_color;
color: @theme_selected_fg_color;
}
*:selected .matchview {
background: alpha(@theme_selected_bg_color, 0.5);
border: 2px solid alpha(black, 0.3)
}
#kupfer {
background: @theme_bg_color;
color: @theme_fg_color;
}
.matchview {
border-radius: 0.6em;
}
#kupfer-preedit {
padding: 0 0 0 0;
}
#kupfer-preedit.hidden {
border-width: 0 0 0 0;
padding: 0 0 0 0 ;
margin: 0 0 0 0;
outline-width: 0;
min-height: 0;
min-width: 0;
}
#kupfer-object-pane {
}
#kupfer-action-pane {
}
#kupfer-indirect-object-pane {
}
#kupfer-list {
}
#kupfer-list-view {
background-color: @theme_bg_color;
color: @theme_fg_color;
}
#kupfer-list-view:selected {
background-color: @theme_selected_bg_color;
color: @theme_selected_fg_color;
}
*:selected .matchview {
background: alpha(@theme_selected_bg_color, 0.5);
border: 2px solid alpha(black, 0.3)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment