### Custom Text Coloring Syntax Example Source: https://github.com/superschnizel/obsidian-fast-text-color/blob/master/README.md Demonstrates the custom syntax used to color text sections within Obsidian notes. This syntax, when processed by the plugin, applies specific styles defined by active themes or custom CSS classes. ```markdown ~={id} This text is colored according to the id=~ ``` -------------------------------- ### Dynamic CSS Class Generation for Themes Source: https://context7.com/superschnizel/obsidian-fast-text-color/llms.txt Explains the dynamic generation of CSS classes for text colors, incorporating theme names and color IDs. It shows example CSS for different color applications and how these classes are injected into the document's style element, updating dynamically. ```css // CSS class naming pattern: ftc-color-{themeName}-{colorId} // Example generated CSS: .ftc-color-default-red { --ftc-color: #ff0000; color: var(--ftc-color); } .ftc-color-default-highlight { --ftc-color: #ffff00; color: var(--ftc-color); font-weight: bold; font-style: italic; text-decoration: underline; } .ftc-color-default-caps { --ftc-color: #00ff00; color: var(--ftc-color); text-transform: uppercase; } .ftc-color-builtin-blue { --ftc-color: var(--color-blue); color: var(--ftc-color); } // With colorCodeSection setting enabled: .ftc-color-default-red { --ftc-color: #ff0000; color: var(--ftc-color); --code-normal: var(--ftc-color); // Colors inline code blocks } // Classes are injected into