Skip to content

Commit

Permalink
Merge pull request #59 from Hi30MC/main
Browse files Browse the repository at this point in the history
Custom Theme Addition
  • Loading branch information
Scrumplex authored Oct 21, 2024
2 parents 0a1fcdb + 56de7f9 commit 5e75bfc
Show file tree
Hide file tree
Showing 7 changed files with 106 additions and 0 deletions.
25 changes: 25 additions & 0 deletions themes/Hi30-Pink/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!--
SPDX-FileCopyrightText: 2024 Hi30MC
SPDX-License-Identifier: CC0-1.0
-->

Hi30MC
---
A pink theme with dark background.

## Preview
![Hi30MC Pink Preview](preview.png)

## License
```
MIT License
Copyright (c) 2024 Hi30MC
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
```
Binary file added themes/Hi30-Pink/preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions themes/Hi30-Pink/preview.png.license
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
SPDX-FileCopyrightText: 2024 Hi30MC

SPDX-License-Identifier: MIT
Empty file.
22 changes: 22 additions & 0 deletions themes/Hi30-Pink/theme.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"colors": {
"AlternateBase": "#171417",
"Base": "#171417",
"BrightText": "#eb90f5",
"Button": "#171417",
"ButtonText": "#eb90f5",
"Highlight": "#eb90f5",
"HighlightedText": "#171417",
"Link": "#55cdfc",
"Text": "#eb90f5",
"ToolTipBase": "#eb90f5",
"ToolTipText": "#eb90f5",
"Window": "#171417",
"WindowText": "#eb90f5",
"fadeAmount": 0.5,
"fadeColor": "#741180"
},
"name": "Hi30 Pink",
"qssFilePath": "themeStyle.css",
"widgets": "Fusion"
}
3 changes: 3 additions & 0 deletions themes/Hi30-Pink/theme.json.license
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
SPDX-FileCopyrightText: 2024 Hi30MC

SPDX-License-Identifier: MIT
53 changes: 53 additions & 0 deletions themes/Hi30-Pink/themeStyle.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
/*
* SPDX-FileCopyrightText: 2022 Freecommunist
*
* SPDX-License-Identifier: MIT
*/

QToolTip { color: #eb90f5;
background-color: #171417;
}

/* MAIN */
QMainWindow,
QDockWidget {
background-color: #171417;
}

QWidget {
/* border-color: #eb90f5; */
font-family: "Fira Code Semibold", serif;
}

QObject::separator,
QObject::handle {
outline: 1;
outline-color: #eb90f5;
selection-color: #171417;
selection-background-color: #eb90f5;
alternate-background-color: transparent;
}

QToolButton {
background-color: #171417;
color: #eb90f5;
padding: 0px;
margin: 0px;
margin-left: 0px;
margin-right: 0px;
}

QToolButton:hover {
background-color: #eb90f5;
color: #171417;
}

QToolButton:pressed {
background-color: #eb90f5;
color: #171417
}

QToolButton:on {
background-color: #b771bf
color: #171417
}

0 comments on commit 5e75bfc

Please sign in to comment.