forked from Shinonome/dots-hyprland
updaed pywal dependancy added kvantum theming and pywal also changes some configs
This commit is contained in:
@@ -0,0 +1,74 @@
|
||||
* {
|
||||
|
||||
background: #0F1416;
|
||||
onBackground: #DEE3E5;
|
||||
surface: #0F1416;
|
||||
surfaceDim: #0F1416;
|
||||
surfaceBright: #343A3C;
|
||||
surfaceContainerLowest: #090F11;
|
||||
surfaceContainerLow: #171C1E;
|
||||
surfaceContainer: #1B2022;
|
||||
surfaceContainerHigh: #252B2D;
|
||||
surfaceContainerHighest: #303638;
|
||||
onSurface: #DEE3E5;
|
||||
surfaceVariant: #3F484B;
|
||||
onSurfaceVariant: #BFC8CB;
|
||||
inverseSurface: #DEE3E5;
|
||||
inverseOnSurface: #2C3133;
|
||||
outline: #899295;
|
||||
outlineVariant: #3F484B;
|
||||
shadow: #000000;
|
||||
scrim: #000000;
|
||||
surfaceTint: #84D2E7;
|
||||
primary: #84D2E7;
|
||||
onPrimary: #003640;
|
||||
primaryContainer: #004E5C;
|
||||
onPrimaryContainer: #ACEDFF;
|
||||
inversePrimary: #00687A;
|
||||
secondary: #B2CBD2;
|
||||
onSecondary: #1D343A;
|
||||
secondaryContainer: #334A51;
|
||||
onSecondaryContainer: #CEE7EF;
|
||||
tertiary: #BFC4EB;
|
||||
onTertiary: #282F4D;
|
||||
tertiaryContainer: #898FB3;
|
||||
onTertiaryContainer: #000000;
|
||||
error: #FFB4AB;
|
||||
onError: #690005;
|
||||
errorContainer: #93000A;
|
||||
onErrorContainer: #FFDAD6;
|
||||
primaryFixed: #ACEDFF;
|
||||
primaryFixedDim: #84D2E7;
|
||||
onPrimaryFixed: #001F26;
|
||||
onPrimaryFixedVariant: #004E5C;
|
||||
secondaryFixed: #CEE7EF;
|
||||
secondaryFixedDim: #B2CBD2;
|
||||
onSecondaryFixed: #061F24;
|
||||
onSecondaryFixedVariant: #334A51;
|
||||
tertiaryFixed: #DDE1FF;
|
||||
tertiaryFixedDim: #BFC4EB;
|
||||
onTertiaryFixed: #131937;
|
||||
onTertiaryFixedVariant: #3F4565;
|
||||
success: #B5CCBA;
|
||||
onSuccess: #213528;
|
||||
successContainer: #374B3E;
|
||||
onSuccessContainer: #D1E9D6;
|
||||
term0: #151B1E;
|
||||
term1: #8383FF;
|
||||
term2: #63DEDC;
|
||||
term3: #75FCDD;
|
||||
term4: #78B4C2;
|
||||
term5: #7AAEEA;
|
||||
term6: #81D7DE;
|
||||
term7: #CCDBD5;
|
||||
term8: #B1BCB5;
|
||||
term9: #BCB9FF;
|
||||
term10: #F5FFFE;
|
||||
term11: #FFFFFF;
|
||||
term12: #BEE3E8;
|
||||
term13: #C8DAFF;
|
||||
term14: #ECFEFF;
|
||||
term15: #CBE7F0;
|
||||
|
||||
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
@theme "~/.config/rofi/style.rasi"
|
||||
@@ -0,0 +1,180 @@
|
||||
/**
|
||||
*
|
||||
* Author : Aditya Shakya (adi1090x)
|
||||
* Github : @adi1090x
|
||||
*
|
||||
* Rofi Theme File
|
||||
* Rofi Version: 1.7.3
|
||||
**/
|
||||
|
||||
/* Import Pywal colors */
|
||||
@import "~/.config/rofi/colors.rasi"
|
||||
|
||||
|
||||
* {
|
||||
font: "Iosevka 15";
|
||||
width: 800;
|
||||
height: 500;
|
||||
actve: @active-background;
|
||||
urgent: @urgent-background;
|
||||
}
|
||||
/*****----- Configuration -----*****/
|
||||
configuration {
|
||||
modi: "drun,window";
|
||||
show-icons: true;
|
||||
icon-theme: "Papirus";
|
||||
display-drun: " ";
|
||||
drun-display-format: "{name}";
|
||||
}
|
||||
|
||||
/*****----- Main Window -----*****/
|
||||
window {
|
||||
transparency: "real";
|
||||
location: center;
|
||||
anchor: center;
|
||||
fullscreen: false;
|
||||
x-offset: 0px;
|
||||
y-offset: 0px;
|
||||
|
||||
enabled: true;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
border: 0px solid;
|
||||
border-radius: 12px;
|
||||
border-color: @secondary;
|
||||
background-color: @background;
|
||||
cursor: "default";
|
||||
border: 2px;
|
||||
border-color: @onSecondary;
|
||||
}
|
||||
|
||||
/*****----- Main Box -----*****/
|
||||
mainbox {
|
||||
enabled: true;
|
||||
spacing: 10px;
|
||||
margin: 0px;
|
||||
padding: 20px;
|
||||
border: 0px solid;
|
||||
border-radius: 0px 0px 0px 0px;
|
||||
border-color: @onSecondary;
|
||||
background-color: transparent;
|
||||
children: [ "inputbar", "listview" ];
|
||||
}
|
||||
|
||||
/*****----- Inputbar -----*****/
|
||||
inputbar {
|
||||
enabled: true;
|
||||
spacing: 10px;
|
||||
margin: 0px;
|
||||
padding: 15px;
|
||||
border: 2px solid;
|
||||
border-radius: 12px;
|
||||
border-color: @onSecondary;
|
||||
background-color: @secondaryContainer;
|
||||
text-color: @secondary;
|
||||
children: [ "prompt", "entry" ];
|
||||
}
|
||||
|
||||
prompt {
|
||||
enabled: true;
|
||||
background-color: inherit;
|
||||
text-color: inherit;
|
||||
}
|
||||
textbox-prompt-colon {
|
||||
enabled: true;
|
||||
expand: false;
|
||||
str: "::";
|
||||
background-color: inherit;
|
||||
text-color: inherit;
|
||||
}
|
||||
entry {
|
||||
enabled: true;
|
||||
background-color: inherit;
|
||||
text-color: inherit;
|
||||
cursor: text;
|
||||
placeholder: "Search apps ...";
|
||||
placeholder-color: inherit;
|
||||
}
|
||||
|
||||
/*****----- Listview -----*****/
|
||||
listview {
|
||||
enabled: true;
|
||||
columns: 2;
|
||||
lines: 8;
|
||||
cycle: true;
|
||||
dynamic: true;
|
||||
scrollbar: false;
|
||||
layout: vertical;
|
||||
reverse: false;
|
||||
fixed-height: true;
|
||||
fixed-columns: true;
|
||||
|
||||
spacing: 5px;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
border: 0px solid;
|
||||
border-radius: 0px;
|
||||
border-color: @primary;
|
||||
background-color: transparent;
|
||||
text-color: @onBackground;
|
||||
cursor: "default";
|
||||
}
|
||||
scrollbar {
|
||||
handle-width: 5px ;
|
||||
handle-color: @secondary;
|
||||
border-radius: 0px;
|
||||
background-color: @primary;
|
||||
}
|
||||
|
||||
/*****----- Elements -----*****/
|
||||
element {
|
||||
enabled: true;
|
||||
spacing: 10px;
|
||||
margin: 0px;
|
||||
padding: 5px;
|
||||
border: 0px solid;
|
||||
border-radius: 12px;
|
||||
border-color: @onSecondaryContainer;
|
||||
background-color: transparent;
|
||||
text-color: @onBackground;
|
||||
cursor: pointer;
|
||||
}
|
||||
element normal.normal {
|
||||
background-color: transparent;
|
||||
text-color: @onBackground;
|
||||
}
|
||||
element selected.normal {
|
||||
background-color: @primary;
|
||||
text-color: @onPrimary;
|
||||
}
|
||||
element-icon {
|
||||
background-color: transparent;
|
||||
text-color: inherit;
|
||||
size: 40px;
|
||||
cursor: inherit;
|
||||
}
|
||||
element-text {
|
||||
background-color: transparent;
|
||||
text-color: inherit;
|
||||
highlight: inherit;
|
||||
cursor: inherit;
|
||||
vertical-align: 0.5;
|
||||
horizontal-align: 0.0;
|
||||
}
|
||||
|
||||
/*****----- Message -----*****/
|
||||
error-message {
|
||||
padding: 15px;
|
||||
border: 2px solid;
|
||||
border-radius: 12px;
|
||||
border-color: @onErrorContainer;
|
||||
background-color: @onError;
|
||||
text-color: @error;
|
||||
}
|
||||
textbox {
|
||||
background-color: @onPrimary;
|
||||
text-color: @onBackground;
|
||||
vertical-align: 0.5;
|
||||
horizontal-align: 0.0;
|
||||
highlight: none;
|
||||
}
|
||||
Reference in New Issue
Block a user