init
This commit is contained in:
commit
68768eb9b0
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
*.bck
|
||||
*.map
|
7
manifest.json
Normal file
7
manifest.json
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"name": "obsidian-yorha",
|
||||
"version": "1.0.0",
|
||||
"minAppVersion": "1.0.0",
|
||||
"author": "accrazed",
|
||||
"authorUrl": "https://buns.gay"
|
||||
}
|
92
theme.css
Normal file
92
theme.css
Normal file
@ -0,0 +1,92 @@
|
||||
/* Colors */
|
||||
/* Reds */
|
||||
/* Yellows */
|
||||
/* Blues */
|
||||
/* Greens */
|
||||
@keyframes pulsingBackground {
|
||||
0% {
|
||||
background-color: rgb(218, 212, 187);
|
||||
}
|
||||
20% {
|
||||
background-color: rgb(218, 212, 187);
|
||||
opacity: 1;
|
||||
}
|
||||
50% {
|
||||
background-color: rgb(218, 212, 187);
|
||||
opacity: 0.65;
|
||||
}
|
||||
80% {
|
||||
background-color: rgb(218, 212, 187);
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
background-color: rgb(218, 212, 187);
|
||||
}
|
||||
}
|
||||
/* Colors */
|
||||
body {
|
||||
--background-primary: $low;
|
||||
--background-primary-alt: $high;
|
||||
/* --background-secondary: ; // Secondary background */
|
||||
/* --background-secondary-alt: ; // Background for surfaces on top of secondary background */
|
||||
/* --background-modifier-hover: ; // Hovered elements */
|
||||
/* --background-modifier-active-hover: ; // Active hovered elements */
|
||||
/* --background-modifier-border: ; // Border color */
|
||||
/* --background-modifier-border-hover: ; // Border color (hover) */
|
||||
/* --background-modifier-border-focus: ; // Border color (focus) */
|
||||
/* --background-modifier-error-rgb: ; // Error background, RGB value */
|
||||
/* --background-modifier-error: ; // Error background */
|
||||
/* --background-modifier-error-hover: ; // Error background (hover) */
|
||||
/* --background-modifier-success-rgb: ; // Success background, RGB value */
|
||||
/* --background-modifier-success: ; // Success background */
|
||||
/* --background-modifier-message: ; // Messages background */
|
||||
/* --background-modifier-form-field: ; // Form field background */
|
||||
}
|
||||
|
||||
/* Window */
|
||||
body {
|
||||
/* Divider */
|
||||
/* --divider-color: #FFF; // Divider border color */
|
||||
--divider-color-hover: #FFF;
|
||||
/* --divider-width: 1px; // Divider border width */
|
||||
/* --divider-width-hover: 1px; // Divider border width (hover) */
|
||||
/* --divider-vertical-height: 1px; // Divider vertical height */
|
||||
/* Ribbon */
|
||||
--ribbon-background: transparent;
|
||||
--ribbon-background-collapsed: transparent;
|
||||
/* --ribbon-width: 30px; // Ribbon width */
|
||||
/* --ribbon-padding: 5px; // Ribbon padding */
|
||||
/* Scrollbar */
|
||||
/* --scrollbar-bg: ; // Scrollbar background color */
|
||||
/* --scrollbar-thumb-bg: ; // Scrollbar thumb background color */
|
||||
/* --scrollbar-active-thumb-bg: ; // Scrollbar thumb background color (active) */
|
||||
/* Status bar */
|
||||
--status-bar-background: transparent;
|
||||
/* --status-bar-border-color: ; // Status bar border color */
|
||||
/* --status-bar-border-width: ; // Status bar border width */
|
||||
/* --status-bar-font-size: ; // Status bar font size */
|
||||
/* --status-bar-text-color: ; // Status bar text color */
|
||||
/* --status-bar-position: ; // Status bar position property */
|
||||
/* --status-bar-radius: ; // Status bar radius */
|
||||
/* --status-bar-scroll-padding: ; // Status bar scroll padding */
|
||||
/* Vault Profile */
|
||||
/* --vault-profile-display: ; // display property for the vault profile */
|
||||
/* --vault-profile-actions-display: ; // display property for the action buttons in the vault profile */
|
||||
/* --vault-profile-font-size: ; // Font size */
|
||||
/* --vault-profile-font-weight: ; // Font weight */
|
||||
/* --vault-profile-color: ; // Text color */
|
||||
/* --vault-profile-color-hover: ; // Text color (hover) */
|
||||
/* Window Frame */
|
||||
--titlebar-background: transparent;
|
||||
--titlebar-background-focused: transparent;
|
||||
/* --titlebar-border-width: ; // Titlebar border width */
|
||||
/* --titlebar-border-color: ; // Titlebar border color */
|
||||
/* --titlebar-text-color: ; // Titlebar text color */
|
||||
/* --titlebar-text-color-focused: ; // Titlebar text color (focused window) */
|
||||
/* --titlebar-text-weight: ; // Titlebar font weight */
|
||||
/* --header-height: ; // Default height for frame elements */
|
||||
/* Workspace */
|
||||
/* --workspace-background-translucent: ; // Background for translucent windows */
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=theme.css.map */
|
75
theme.scss
Normal file
75
theme.scss
Normal file
@ -0,0 +1,75 @@
|
||||
@use "nier/import.scss" as *;
|
||||
|
||||
/* Colors */
|
||||
body {
|
||||
--background-primary: $low; // Primary background
|
||||
--background-primary-alt: $high; // Background for surfaces on top of primary background
|
||||
/* --background-secondary: ; // Secondary background */
|
||||
/* --background-secondary-alt: ; // Background for surfaces on top of secondary background */
|
||||
/* --background-modifier-hover: ; // Hovered elements */
|
||||
/* --background-modifier-active-hover: ; // Active hovered elements */
|
||||
/* --background-modifier-border: ; // Border color */
|
||||
/* --background-modifier-border-hover: ; // Border color (hover) */
|
||||
/* --background-modifier-border-focus: ; // Border color (focus) */
|
||||
/* --background-modifier-error-rgb: ; // Error background, RGB value */
|
||||
/* --background-modifier-error: ; // Error background */
|
||||
/* --background-modifier-error-hover: ; // Error background (hover) */
|
||||
/* --background-modifier-success-rgb: ; // Success background, RGB value */
|
||||
/* --background-modifier-success: ; // Success background */
|
||||
/* --background-modifier-message: ; // Messages background */
|
||||
/* --background-modifier-form-field: ; // Form field background */
|
||||
|
||||
}
|
||||
|
||||
/* Window */
|
||||
body {
|
||||
/* Divider */
|
||||
/* --divider-color: #FFF; // Divider border color */
|
||||
--divider-color-hover: #FFF; // Divider border color (hover)
|
||||
/* --divider-width: 1px; // Divider border width */
|
||||
/* --divider-width-hover: 1px; // Divider border width (hover) */
|
||||
/* --divider-vertical-height: 1px; // Divider vertical height */
|
||||
|
||||
/* Ribbon */
|
||||
--ribbon-background: transparent; // Ribbon background color
|
||||
--ribbon-background-collapsed: transparent; // Ribbon background color (collapsed sidebar)
|
||||
/* --ribbon-width: 30px; // Ribbon width */
|
||||
/* --ribbon-padding: 5px; // Ribbon padding */
|
||||
|
||||
/* Scrollbar */
|
||||
/* --scrollbar-bg: ; // Scrollbar background color */
|
||||
/* --scrollbar-thumb-bg: ; // Scrollbar thumb background color */
|
||||
/* --scrollbar-active-thumb-bg: ; // Scrollbar thumb background color (active) */
|
||||
|
||||
/* Status bar */
|
||||
--status-bar-background: transparent; // Status bar background color
|
||||
/* --status-bar-border-color: ; // Status bar border color */
|
||||
/* --status-bar-border-width: ; // Status bar border width */
|
||||
/* --status-bar-font-size: ; // Status bar font size */
|
||||
/* --status-bar-text-color: ; // Status bar text color */
|
||||
/* --status-bar-position: ; // Status bar position property */
|
||||
/* --status-bar-radius: ; // Status bar radius */
|
||||
/* --status-bar-scroll-padding: ; // Status bar scroll padding */
|
||||
|
||||
/* Vault Profile */
|
||||
/* --vault-profile-display: ; // display property for the vault profile */
|
||||
/* --vault-profile-actions-display: ; // display property for the action buttons in the vault profile */
|
||||
/* --vault-profile-font-size: ; // Font size */
|
||||
/* --vault-profile-font-weight: ; // Font weight */
|
||||
/* --vault-profile-color: ; // Text color */
|
||||
/* --vault-profile-color-hover: ; // Text color (hover) */
|
||||
|
||||
/* Window Frame */
|
||||
--titlebar-background: transparent; // Titlebar background color
|
||||
--titlebar-background-focused: transparent; // Titlebar background color (focused window)
|
||||
/* --titlebar-border-width: ; // Titlebar border width */
|
||||
/* --titlebar-border-color: ; // Titlebar border color */
|
||||
/* --titlebar-text-color: ; // Titlebar text color */
|
||||
/* --titlebar-text-color-focused: ; // Titlebar text color (focused window) */
|
||||
/* --titlebar-text-weight: ; // Titlebar font weight */
|
||||
/* --header-height: ; // Default height for frame elements */
|
||||
|
||||
/* Workspace */
|
||||
/* --workspace-background-translucent: ; // Background for translucent windows */
|
||||
|
||||
}
|
3
versions.json
Normal file
3
versions.json
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"1.0.0": "1.0.0"
|
||||
}
|
Loading…
Reference in New Issue
Block a user