Skip to content

Commit

Permalink
Add lighthouse theme
Browse files Browse the repository at this point in the history
  • Loading branch information
jvyden committed Nov 3, 2023
1 parent 3e23ad4 commit 6694b23
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
[id]="bannerService.banners.indexOf(n)"
/>

<div class="container mx-auto bg-backdrop p-5 grid min-h-full h-full mb-10 text-foreground"
<div class="container mx-auto bg-backdrop p-5 grid min-h-full h-full mb-10 text-foreground lighthouse:border-x border-divider"
[@routeAnimations]="o.isActivated ? o.activatedRoute : ''">
<router-outlet #o="outlet"></router-outlet>
</div>
6 changes: 5 additions & 1 deletion src/app/pages/settings/settings.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,11 @@ export class SettingsComponent implements OnInit {
{
Name: "Sound Shapes",
Value: "soundShapes",
}
},
{
Name: "Lighthouse",
Value: "lighthouse",
},
]

theme: string;
Expand Down
31 changes: 31 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,37 @@ module.exports = {
"api-retrieve": "#79c501",
"api-remove": "#ea574d",
"api-push": "#eeb231",
},
lighthouse: {
"background": "#ededf0",
"header-background": "#121212",
"form-background": "#dddddd",
"backdrop": "#FFFFFF",

"divider": "#d4d4d5",

"header-foreground": "#F7F7F7",
"foreground": "#15141A",
"gentle": "#5B5B66",

"primary": "#0e91f5",
"secondary": "#d4d4d5",
"teritary": "#FFFFFF",

"secondary-bright": "#FFFFFF",

"success": "#23c841",
"dangerous": "#f12c2c",
"warning": "#fdc202",

"rank-gold": "#fdc202",
"rank-silver": "#F2F2F2",
"rank-bronze": "#FF8845",
"rank-other": "#d4d4d5",

"api-retrieve": "#23c841",
"api-remove": "#f12c2c",
"api-push": "#0e91f5"
}
})
],
Expand Down

0 comments on commit 6694b23

Please sign in to comment.