Skip to content

Commit

Permalink
Add more themes
Browse files Browse the repository at this point in the history
  • Loading branch information
Nebelung-Dev committed Apr 12, 2024
1 parent a5ec764 commit 88e050a
Show file tree
Hide file tree
Showing 2 changed files with 134 additions and 2 deletions.
4 changes: 4 additions & 0 deletions src/style/index.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Major+Mono+Display&display=swap');

@import url('style.css');

Expand Down
132 changes: 130 additions & 2 deletions src/themes.json
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@
"primary": "white",
"text": "white",
"textInverse": "white",
"font": "Roboto"
"font": "Montserrat"
}
},
{
Expand Down Expand Up @@ -385,7 +385,7 @@
"primary": "black",
"text": "white",
"textInverse": "black",
"font": "Roboto"
"font": "Arial"
},
"custom": {
".logo": {
Expand Down Expand Up @@ -475,5 +475,133 @@
"textInverse": "#4c4f69 /* Text */",
"font": "Roboto"
}
},
{
"name": "Mercury Workshop",
"id": "hg",
"theme": {
"background": "#0b0f3d",
"secondary": "#3d4065",
"primary": "white",
"text": "white",
"textInverse": "white",
"font": "Space Grotesk"
},
"custom": {
".logo svg": {
"filter": "drop-shadow(0 0 15px var(--primary))"
}
}
},
{
"name": "Ludicrous",
"id": "ludicrous",
"theme": {
"background": "#091b2c",
"secondary": "#114067",
"primary": "white",
"text": "white",
"textInverse": "white",
"font": "Roboto"
}
},
{
"name": "Discord",
"id": "discord",
"theme": {
"background": "#313338",
"secondary": "#2B2D31",
"primary": "#5865F2",
"text": "white",
"textInverse": "white",
"font": "Open Sans"
}
},
{
"name": "FlowOS",
"id": "flow",
"theme": {
"background": "#11111b",
"secondary": "#1e1e2e",
"primary": "#89B4FA",
"text": "#cdd6f4",
"textInverse": "#cdd6f4",
"font": "monospace"
},
"custom": {
"": {
"font-size": "16px"
}
}
},
{
"name": "Bubblegum",
"id": "bubblegum",
"theme": {
"background": "#EE6176",
"secondary": "#F58092",
"primary": "#ffc1cc",
"text": "white",
"textInverse": "white",
"font": "Roboto"
}
},
{
"name": "Noctura",
"id": "noctura",
"theme": {
"background": "black",
"secondary": "#242424",
"primary": "white",
"text": "white",
"textInverse": "white",
"font": "Roboto"
},
"custom": {
".title": {
"font-family": "Major Mono Display"
}
}
},
{
"name": "VS Code",
"id": "vscode",
"theme": {
"background": "#1f1f1f",
"secondary": "#181818",
"primary": "#0078d4",
"text": "#CCC",
"textInverse": "white",
"font": "Roboto"
}
},
{
"name": "Pride",
"id": "pride",
"theme": {
"background": "linear-gradient(180deg, #FE0000 16.66%, #FD8C00 16.66%, 33.32%, #FFE500 33.32%, 49.98%, #119F0B 49.98%, 66.64%, #0644B3 66.64%, 83.3%, #C22EDC 83.3%), #000000c4",
"secondary": "white",
"primary": "black",
"text": "black",
"textInverse": "black",
"font": "Roboto"
},
"custom": {
"": {
"background-attachment": "fixed"
}
}
},
{
"name": "Immortal",
"id": "immortal",
"theme": {
"background": "linear-gradient(120deg, rgba(01,06,15,1) 21%, rgba(01,21,49,1) 97%)",
"secondary": "#1E293B",
"primary": "#155E75",
"text": "white",
"textInverse": "white",
"font": "Roboto"
}
}
]

0 comments on commit 88e050a

Please sign in to comment.