Skip to content

Commit

Permalink
Updated colors throughout the app
Browse files Browse the repository at this point in the history
  • Loading branch information
cassidyjames committed May 24, 2024
1 parent f354694 commit d1723ac
Show file tree
Hide file tree
Showing 20 changed files with 25 additions and 24 deletions.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

Hybrid native + web app for [Plausible Analytics](https://plausible.io).

![Screenshot](data/screenshots/sites-light.png) | ![Screenshot](data/screenshots/dashboard-dark.png)
---------------------------------------------------- | -----------------------------------------------------
![Screenshot](data/screenshots/extra/about-dark.png) | ![Screenshot](data/screenshots/extra/domain-light.png) ![Screenshot](data/screenshots/extra/logout-light.png)
![Screenshot](data/screenshots/dashboard-light.png) | ![Screenshot](data/screenshots/dashboard-dark.png)
--------------------------------------------------- | --------------------------------------------------
![Screenshot](data/screenshots/sites-dark.png) | ![Screenshot](data/screenshots/sites-light.png)

Plausible is the simple privacy-friendly alternative to Google Analytics. Tally wraps the Plausible web app in a native UI, integrating better with desktop operating systems. Native features include:

Expand All @@ -31,4 +31,3 @@ Other features include:
I recommend using GNOME Builder with default settings to build the Flatpak.

[flathub]: https://flathub.org/apps/details/com.cassidyjames.plausible

14 changes: 4 additions & 10 deletions data/metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -124,22 +124,16 @@
</releases>
<screenshots>
<screenshot type="default">
<image>https://raw.githubusercontent.com/cassidyjames/tally/3.0.1/data/screenshots/dashboard-dark.png</image>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/cassidyjames/tally/3.0.1/data/screenshots/dashboard-light.png</image>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/cassidyjames/tally/3.0.1/data/screenshots/sites-dark.png</image>
<image>https://raw.githubusercontent.com/cassidyjames/tally/3.0.1/data/screenshots/dashboard-dark.png</image>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/cassidyjames/tally/3.0.1/data/screenshots/sites-light.png</image>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/cassidyjames/tally/3.0.1/data/screenshots/login-dark.png</image>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/cassidyjames/tally/3.0.1/data/screenshots/login-light.png</image>
<image>https://raw.githubusercontent.com/cassidyjames/tally/3.0.1/data/screenshots/sites-dark.png</image>
</screenshot>
</screenshots>
<content_rating type="oars-1.1">
Expand All @@ -152,7 +146,7 @@
<url type="help">https://cassidyjames.com/support</url>
<!--url type="contact">https://cassidyjames.com/support</url-->
<branding>
<color type="primary" scheme_preference="light">#b5b3fe</color>
<color type="primary" scheme_preference="dark">#393499</color>
<color type="primary" scheme_preference="light">#9e99fe</color>
<color type="primary" scheme_preference="dark">#352f99</color>
</branding>
</component>
Binary file modified data/screenshots/dashboard-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified data/screenshots/dashboard-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed data/screenshots/extra/about-dark.png
Binary file not shown.
Binary file removed data/screenshots/extra/about-details-dark.png
Binary file not shown.
Binary file removed data/screenshots/extra/about-details-light.png
Binary file not shown.
Binary file removed data/screenshots/extra/about-legal-dark.png
Binary file not shown.
Binary file removed data/screenshots/extra/about-legal-light.png
Binary file not shown.
Binary file removed data/screenshots/extra/about-light.png
Binary file not shown.
Binary file removed data/screenshots/extra/domain-dark.png
Binary file not shown.
Binary file removed data/screenshots/extra/domain-light.png
Binary file not shown.
Binary file removed data/screenshots/extra/logout-dark.png
Binary file not shown.
Binary file removed data/screenshots/extra/logout-light.png
Binary file not shown.
Binary file removed data/screenshots/login-dark.png
Binary file not shown.
Binary file removed data/screenshots/login-light.png
Binary file not shown.
Binary file modified data/screenshots/sites-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified data/screenshots/sites-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 8 additions & 3 deletions data/style-dark.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
@define-color accent_color #9c95fd;
@define-color window_bg_color #1a202c;
@define-color dialog_bg_color #1f2937;
@define-color accent_color #99A8FE;
@define-color accent_alt_color @accent_color;

@define-color headerbar_bg_color #1e293b;

@define-color window_bg_color #1a202C;
@define-color window_fg_color #f1f5f9;
@define-color dialog_bg_color #1e293b;
17 changes: 10 additions & 7 deletions data/style.css
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
@define-color headerbar_bg_color #5850ec;
@define-color headerbar_fg_color #fff;
@define-color headerbar_border_color #fff;
@define-color headerbar_backdrop_color mix(@headerbar_bg_color, @window_bg_color, 0.2);
@define-color accent_color #4f46e5;
@define-color accent_alt_color #1f2961;

@define-color accent_color @headerbar_bg_color;
@define-color headerbar_bg_color #f4f5fc;
@define-color headerbar_fg_color @accent_color;
@define-color headerbar_border_color @headerbar_fg_color;
@define-color headerbar_backdrop_color mix(@headerbar_bg_color, @window_bg_color, 0.2);

@define-color window_bg_color #f9fafb;
@define-color window_bg_color #f8fafc;
@define-color window_fg_color #0f172a;
@define-color dialog_bg_color #fff;
@define-color popover_bg_color @dialog_bg_color;

.loading {
background-color: @dialog_bg_color;
background-color: @headerbar_bg_color;
color: @accent_alt_color;
}

0 comments on commit d1723ac

Please sign in to comment.