Compare commits

...

8 Commits

Author SHA1 Message Date
Svilen Markov 49058b0300
Merge pull request #847 from koalalorenzo/fix-asset-path-missing-slashes
fix: uses the correct path for assets (ex: manifest.json )
2025-10-16 14:38:29 +07:00
Lorenzo Setale 2c38036005
fix wrong path for assets (ex: manifest.json ) 2025-10-15 21:32:21 +07:00
Svilen Markov cae90d16ba Update theme preview 2025-09-28 12:40:33 +07:00
Svilen Markov fbc07bd142
Merge pull request #833 from nicolasluckie/feat/add-shades-of-purple-theme
feat: Add Shades of Purple theme with screenshot
2025-09-28 12:36:36 +07:00
Svilen Markov 4a4d3e1755
Add contrast-multiplier to shades of purple 2025-09-28 12:34:41 +07:00
Svilen Markov f243a4938f Update readme 2025-09-28 12:21:12 +07:00
Svilen Markov 9416de1497 Fix indentation 2025-09-28 11:43:11 +07:00
Nic Luckie 283a5fcfd0 feat: add Shades of Purple theme with screenshot 2025-09-27 22:34:21 +07:00
6 changed files with 112 additions and 90 deletions

@ -1,7 +1,18 @@
<p align="center"><em>What if you could see everything at a...</em></p>
<p align="center"><img src="docs/logo.png"></p>
<h1 align="center">Glance</h1>
<p align="center"><a href="#installation">Install</a><a href="docs/configuration.md#configuring-glance">Configuration</a><a href="https://discord.com/invite/7KQ7Xa9kJd">Discord</a><a href="https://github.com/sponsors/glanceapp">Sponsor</a></p>
<p align="center"><a href="https://github.com/glanceapp/community-widgets">Community widgets</a><a href="docs/preconfigured-pages.md">Preconfigured pages</a><a href="docs/themes.md">Themes</a></p>
<p align="center">
<a href="#installation">Install</a>
<a href="docs/configuration.md#configuring-glance">Configuration</a>
<a href="https://discord.com/invite/7KQ7Xa9kJd">Discord</a>
<a href="https://github.com/sponsors/glanceapp">Sponsor</a>
</p>
<p align="center">
<a href="https://github.com/glanceapp/community-widgets">Community widgets</a>
<a href="docs/preconfigured-pages.md">Preconfigured pages</a>
<a href="docs/themes.md">Themes</a>
</p>
<p align="center">A lightweight, highly customizable dashboard that displays<br> your feeds in a beautiful, streamlined interface</p>
![](docs/images/readme-main-image.png)

Binary file not shown.

After

Width:  |  Height:  |  Size: 367 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

@ -86,7 +86,7 @@ Pull requests with your page configurations are welcome!
<summary>View config (requires Glance <code>v0.6.0</code> or higher)</summary>
```yaml
- name: Markets
- name: Markets
columns:
- size: small
widgets:

@ -93,6 +93,17 @@ theme:
negative-color: 0 100 67
```
### Shades of Purple
![screenshot](images/themes/shades-of-purple.png)
```yaml
theme:
background-color: 243 33 25
contrast-multiplier: 1.2
primary-color: 50 100 49
positive-color: 98 82 71
negative-color: 12 77 52
```
## Light
### Catppuccin Latte

@ -429,7 +429,7 @@ func (a *application) StaticAssetPath(asset string) string {
}
func (a *application) VersionedAssetPath(asset string) string {
return a.Config.Server.BaseURL + asset +
return a.Config.Server.BaseURL + "/" + asset +
"?v=" + strconv.FormatInt(a.CreatedAt.Unix(), 10)
}