From 68768eb9b0c348d09a92c5fc83682c52b341ab74 Mon Sep 17 00:00:00 2001 From: accrazed Date: Thu, 24 Apr 2025 23:58:55 -0700 Subject: [PATCH] init --- .gitignore | 2 ++ README.md | 0 manifest.json | 7 ++++ theme.css | 92 +++++++++++++++++++++++++++++++++++++++++++++++++++ theme.scss | 75 +++++++++++++++++++++++++++++++++++++++++ versions.json | 3 ++ 6 files changed, 179 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 manifest.json create mode 100644 theme.css create mode 100644 theme.scss create mode 100644 versions.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..30c2eac --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*.bck +*.map diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..41f7d7c --- /dev/null +++ b/manifest.json @@ -0,0 +1,7 @@ +{ + "name": "obsidian-yorha", + "version": "1.0.0", + "minAppVersion": "1.0.0", + "author": "accrazed", + "authorUrl": "https://buns.gay" +} \ No newline at end of file diff --git a/theme.css b/theme.css new file mode 100644 index 0000000..4fb0ac9 --- /dev/null +++ b/theme.css @@ -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 */ diff --git a/theme.scss b/theme.scss new file mode 100644 index 0000000..43c6030 --- /dev/null +++ b/theme.scss @@ -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 */ + +} \ No newline at end of file diff --git a/versions.json b/versions.json new file mode 100644 index 0000000..39c1bd9 --- /dev/null +++ b/versions.json @@ -0,0 +1,3 @@ +{ + "1.0.0": "1.0.0" +} \ No newline at end of file