Add themes

This commit is contained in:
Ninnjah 2020-12-14 00:13:25 +03:00 committed by GitHub
parent cfa2867b8a
commit 4718ac55aa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 109 additions and 0 deletions

55
themes/Dark Theme.qss Normal file
View file

@ -0,0 +1,55 @@
#background{
background:rgb(48, 48, 48);
}
QWidget{
background: rgb(44, 44, 44);
font: 25 14pt "Calibri Light";
}
QPushButton{
background: rgb(58, 58, 58);
border: none;
}
QPushButton:hover{
background: rgb(53, 53, 53);
}
QListWidget{
margin: 4px;
border: none;
}
QListWidget::item[Custom="true"]{
background: rgb(48, 48, 48);
}
QListWidget::item:hover{
background: rgb(53, 53, 53);
}
QListWidget::item:selected{
background: rgb(48, 48, 48);
color: black;
}
QScrollBar:vertical{
border: 1px transparent rgb(58, 58, 58);
border-radius: 4px;
background: rgb(48, 48, 48);
width: 16px;
}
QScrollBar::handle:vertical{
background: rgb(48, 48, 48);
}
QScrollBar::sub-page:vertical{
background: rgb(58, 58, 58);
}
QScrollBar::add-page:vertical{
background: rgb(58, 58, 58);
}

54
themes/Light Theme.qss Normal file
View file

@ -0,0 +1,54 @@
#background{
background:rgb(248, 248, 248);
}
QWidget{
background: white;
font: 25 14pt "Calibri Light";
}
QPushButton{
background: #eee;
border: none;
}
QPushButton:hover{
background: #f4f4f4;
}
QListWidget{
margin: 4px;
border: none;
}
QListWidget::item[Custom="true"]{
background: #eee;
}
QListWidget::item:hover{
background: #f4f4f4;
}
QListWidget::item:selected{
background: #eee;
color: black;
}
QScrollBar:vertical{
border: 1px transparent #eee;
border-radius: 4px;
background: #eaeaea;
width: 16px;
}
QScrollBar::handle:vertical{
background: #eee;
}
QScrollBar::sub-page:vertical{
background: #f8f8f8;
}
QScrollBar::add-page:vertical{
background: #f8f8f8;
}