rofi-themes/Official Themes/arthur.rasi

174 lines
3.8 KiB
Text
Raw Normal View History

2017-10-19 16:28:30 +02:00
/**
* ROFI Color theme
* User: Qball
* Copyright: Dave Davenport
*/
configuration {
// set display name for each browser
display-ssh: "";
display-run: "";
display-drun: "";
display-window: "";
display-combi: "";
show-icons: true;
2017-10-19 16:28:30 +02:00
}
* {
foreground: #ffeedd;
backlight: #ccffeedd;
background-color: transparent;
dark: #1c1c1c;
2017-10-19 16:28:30 +02:00
// Black
black: #3d352a;
lightblack: #554444;
tlightblack: #554444cc;
2017-10-19 16:28:30 +02:00
// Red
red: #cd5c5c;
lightred: #cc5533;
2017-10-19 16:28:30 +02:00
// Green
green: #86af80;
lightgreen: #88cc22;
2017-10-19 16:28:30 +02:00
// Yellow
yellow: #e8ae5b;
lightyellow: #ffa75d;
2017-10-19 16:28:30 +02:00
// Blue
blue: #6495ed;
lightblue: #87ceeb;
2017-10-19 16:28:30 +02:00
// Magenta
magenta: #deb887;
2017-10-19 16:28:30 +02:00
lightmagenta: #996600;
2017-10-19 16:28:30 +02:00
// Cyan
cyan: #b0c4de;
tcyan: #ccb0c4de;
lightcyan: #b0c4de;
2017-10-19 16:28:30 +02:00
// White
white: #bbaa99;
lightwhite: #ddccbb;
2017-10-19 16:28:30 +02:00
// Bold, Italic, Underline
highlight: underline bold #ffffff;
2017-10-19 16:28:30 +02:00
transparent: rgba(0,0,0,0);
font: "Source Code Pro 10";
2017-10-19 16:28:30 +02:00
}
#window {
location: center;
anchor: center;
transparency: "screenshot";
padding: 10px;
border: 0px;
border-radius: 10px;
color: @magenta;
2017-10-19 16:28:30 +02:00
background-color: @transparent;
spacing: 0;
children: [vertb, mainbox];
orientation: horizontal;
2017-10-19 16:28:30 +02:00
}
#mainbox {
spacing: 0;
2017-10-19 16:28:30 +02:00
children: [ inputbar, message, listview ];
}
#message {
border-color: @foreground;
border: 0px 2px 2px 2px;
padding: 5;
2017-10-19 16:28:30 +02:00
background-color: @tcyan;
}
#message {
font: "Source Code Pro 8";
2017-10-19 16:28:30 +02:00
color: @black;
}
#inputbar {
color: @lightgreen;
padding: 11px;
2017-10-19 16:28:30 +02:00
background-color: @tlightblack;
border: 2px 2px 2px 2px;
border-radius: 15px 15px 0px 0px;
border-color: @foreground;
font: "Source Code Pro 18";
2017-10-19 16:28:30 +02:00
}
#entry,prompt,case-indicator {
text-font: inherit;
text-color: inherit;
2017-10-19 16:28:30 +02:00
}
#prompt {
margin: 0px 0.3em 0em 0em;
}
2017-10-19 16:28:30 +02:00
#listview {
padding: 8px;
border-radius: 0px 0px 15px 15px;
border-color: @foreground;
border: 0px 2px 2px 2px;
2017-10-19 16:28:30 +02:00
background-color: #1c1c1ccc;
dynamic: false;
lines: 10;
2017-10-19 16:28:30 +02:00
}
#element {
padding: 3px;
vertical-align: 0.5;
border-radius: 4px;
2017-10-19 16:28:30 +02:00
background-color: transparent;
color: @foreground;
font: inherit;
2017-10-19 16:28:30 +02:00
}
#element selected.normal {
background-color: @blue;
}
#element normal active {
foreground: @lightblue;
}
#element normal urgent {
foreground: @lightred;
}
#element alternate active {
foreground: @lightblue;
}
#element alternate urgent {
foreground: @lightred;
}
#element selected active {
background-color: @lightblue;
foreground: @dark;
2017-10-19 16:28:30 +02:00
}
#element selected urgent {
background-color: @lightred;
foreground: @dark;
2017-10-19 16:28:30 +02:00
}
#vertb {
expand: false;
2017-10-19 16:28:30 +02:00
children: [ dummy0, sidebar, dummy1 ];
}
#dummy0,dummy1 {
2017-10-19 16:28:30 +02:00
expand: true;
}
#sidebar {
expand: false;
2017-10-19 16:28:30 +02:00
orientation: vertical;
spacing: 0px;
border: 0px 0px 0px 0px;
2017-10-19 16:28:30 +02:00
}
#button {
font: "FontAwesome 22";
padding: 6px;
border: 2px 0px 2px 2px;
border-radius: 4px 0px 0px 4px;
2017-10-19 16:28:30 +02:00
background-color: @tlightblack;
border-color: @foreground;
color: @foreground;
2017-10-19 16:28:30 +02:00
horizontal-align: 0.5;
}
#button selected normal {
color: @dark;
border: 2px 0px 2px 2px;
2017-10-19 16:28:30 +02:00
background-color: @backlight;
border-color: @foreground;
2017-10-19 16:28:30 +02:00
}