Enable custom theme color on prism
Signed-off-by: baalajimaestro <me@baalajimaestro.me>
This commit is contained in:
parent
4668163f86
commit
4582503912
5 changed files with 56 additions and 2 deletions
5
.obsidian/appearance.json
vendored
5
.obsidian/appearance.json
vendored
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"accentColor": "",
|
||||
"cssTheme": "Prism"
|
||||
"cssTheme": "Prism",
|
||||
"enabledCssSnippets": [
|
||||
"theme-custom"
|
||||
]
|
||||
}
|
3
.obsidian/community-plugins.json
vendored
Normal file
3
.obsidian/community-plugins.json
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
[
|
||||
"obsidian-style-settings"
|
||||
]
|
3
.obsidian/plugins/obsidian-style-settings/data.json
vendored
Normal file
3
.obsidian/plugins/obsidian-style-settings/data.json
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"obsidian-prism-theme@@color-schemes-dt": "pt-color-scheme-custom-dt"
|
||||
}
|
42
.obsidian/snippets/theme-custom.css
vendored
Normal file
42
.obsidian/snippets/theme-custom.css
vendored
Normal file
|
@ -0,0 +1,42 @@
|
|||
.theme-dark.pt-color-scheme-custom-dt {
|
||||
--color-grey-base-hsl: 0, 0%, 18%;
|
||||
--color-red-base-hsl: 0, 46%, 22%;
|
||||
--color-orange-base-hsl: 20, 52%, 19%;
|
||||
--color-yellow-base-hsl: 40, 45%, 16%;
|
||||
--color-green-base-hsl: 122, 40%, 15%;
|
||||
--color-mint-base-hsl: 163, 51%, 14%;
|
||||
--color-cyan-base-hsl: 195, 43%, 16%;
|
||||
--color-blue-base-hsl: 228, 39%, 23%;
|
||||
--color-purple-base-hsl: 268, 43%, 24%;
|
||||
--color-pink-base-hsl: 328, 41%, 21%;
|
||||
--color-grey-tint-hsl: 0, 0%, 37%;
|
||||
--color-red-tint-hsl: 0, 41%, 43%;
|
||||
--color-orange-tint-hsl: 9, 45%, 37%;
|
||||
--color-yellow-tint-hsl: 39, 39%, 32%;
|
||||
--color-green-tint-hsl: 121, 34%, 31%;
|
||||
--color-mint-tint-hsl: 163, 43%, 29%;
|
||||
--color-cyan-tint-hsl: 195, 37%, 33%;
|
||||
--color-blue-tint-hsl: 227, 39%, 46%;
|
||||
--color-purple-tint-hsl: 266, 33%, 45%;
|
||||
--color-pink-tint-hsl: 328, 38%, 42%;
|
||||
--color-grey-text-hsl: 0, 0%, 57%;
|
||||
--color-red-text-hsl: 0, 51%, 65%;
|
||||
--color-orange-text-hsl: 19, 43%, 58%;
|
||||
--color-yellow-text-hsl: 40, 37%, 50%;
|
||||
--color-green-text-hsl: 122, 32%, 49%;
|
||||
--color-mint-text-hsl: 163, 39%, 46%;
|
||||
--color-cyan-text-hsl: 195, 38%, 52%;
|
||||
--color-blue-text-hsl: 228, 39%, 65%;
|
||||
--color-purple-text-hsl: 264, 29%, 64%;
|
||||
--color-pink-text-hsl: 331, 32%, 63%;
|
||||
--text-normal: hsl(0, 0%, 85%);
|
||||
--text-muted: hsl(0, 0%, 70%);
|
||||
--text-faint: hsl(0, 0%, 60%);
|
||||
--background-primary: hsl(0, 0%, 13%);
|
||||
--background-primary-alt: hsl(0, 0%, 18%);
|
||||
--background-secondary: hsl(0, 0%, 8.5%);
|
||||
--background-secondary-blur: hsla(0, 0%, 8.5%, 80%);
|
||||
--background-secondary-alt: hsl(0, 0%, 10%);
|
||||
--shadow-s: hsla(0, 0%, 0%, 10%) 0 1px 2px 0;
|
||||
--shadow-l: hsla(0, 0%, 0%, 5%) 0 1px 2px, hsla(0, 0%, 0%, 5%) 0 2px 4px, hsla(0, 0%, 0%, 5%) 0 4px 8px, hsla(0, 0%, 0%, 5%) 0 8px 16px;
|
||||
}
|
5
.obsidian/workspace.json
vendored
5
.obsidian/workspace.json
vendored
|
@ -139,5 +139,8 @@
|
|||
}
|
||||
},
|
||||
"active": "d3ce90df51bd874b",
|
||||
"lastOpenFiles": []
|
||||
"lastOpenFiles": [
|
||||
"snippets/theme-custom.css",
|
||||
"snippets"
|
||||
]
|
||||
}
|
Loading…
Reference in a new issue