-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
519b5b4
commit 5148a64
Showing
23 changed files
with
246 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# 🎨 Themes | ||
|
||
Download and Paste the theme file in | ||
|
||
`/Users/<Username>/Library/Application Support/com.parth-jadhav.verve/theme.json` | ||
|
||
and restart the app to see the changes. | ||
|
||
![Verve Dark Theme](./themes/theme-default/theme-default.png) | ||
Download: [theme-default.json](./themes/theme-default/theme.json) | ||
|
||
![Verve Blue Theme](./themes/theme-blue/theme-blue.png) | ||
|
||
Download: [theme-blue.json](./themes/theme-blue/theme.json) | ||
|
||
![Verve Dracula Theme](./themes/theme-green/theme-green.png) | ||
|
||
|
||
Download: [theme-green.json](./themes/theme-green/theme.json) | ||
|
||
### Create your own theme | ||
|
||
You can create your own theme by editing the theme.json file. You can find the theme.json file in the following location: | ||
|
||
`/Users/<Username>/Library/Application Support/com.parth-jadhav.verve/theme.json` | ||
|
||
Save the file & Restart the app. | ||
|
||
Create a Pull request to add your theme to the list. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"primary_bg_color": "rgba(20, 20, 80, 0.6)", | ||
"secondary_bg_color": "rgba(84, 101, 115, 0.6)", | ||
"primary_text_color": "#FFFFFF", | ||
"secondary_text_color": "#878787", | ||
"primary_accent_color": "#556CE5", | ||
"secondary_accent_color": "#48A5FF", | ||
"highlight_overlay": "rgba(255, 255, 255, 0.1)", | ||
"dark_overlay": "rgba(0, 0, 0, 0.1)" | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"primary_bg_color": "rgba(20, 45, 30, 0.6)", | ||
"secondary_bg_color": "rgba(84, 101, 115, 0.6)", | ||
"primary_text_color": "#FFFFFF", | ||
"secondary_text_color": "#878787", | ||
"primary_accent_color": "#556CE5", | ||
"secondary_accent_color": "#48A5FF", | ||
"highlight_overlay": "rgba(255, 255, 255, 0.1)", | ||
"dark_overlay": "rgba(0, 0, 0, 0.1)" | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"primary_bg_color": "rgba(20, 45, 30, 0.6)", | ||
"secondary_bg_color": "rgba(84, 101, 115, 0.6)", | ||
"primary_text_color": "#FFFFFF", | ||
"secondary_text_color": "#878787", | ||
"primary_accent_color": "#556CE5", | ||
"secondary_accent_color": "#48A5FF", | ||
"highlight_overlay": "rgba(255, 255, 255, 0.1)", | ||
"dark_overlay": "rgba(0, 0, 0, 0.1)" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "verve" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
description = "Verve is a lightweight and blazingly fast launcher for accessing and opening applications, files and documents." | ||
authors = ["[email protected]"] | ||
license = "GNU AFFERO GENERAL PUBLIC LICENSE" | ||
|
@@ -22,6 +22,7 @@ directories = "4.0.1" | |
plist = "1" | ||
strsim = "0.10.0" | ||
auto-launch = "0.4.0" | ||
window-vibrancy = "0.3.2" | ||
|
||
[features] | ||
# by default Tauri runs in production mode | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.