├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .npmrc ├── .prettierrc.json ├── LICENSE ├── README.md ├── docs └── images │ ├── add-color-rounded.gif │ ├── hero-rounded.png │ ├── icons-notes-rounded.png │ └── set-color-rounded.gif ├── esbuild.config.mjs ├── manifest.json ├── package.json ├── src ├── components │ ├── Button │ │ └── index.tsx │ ├── SettingItem │ │ └── index.tsx │ └── icons │ │ ├── AddCircleIcon.tsx │ │ └── TrashIcon.tsx ├── config │ └── styles.ts ├── global.d.ts ├── hooks │ ├── useFile.tsx │ ├── useModal.tsx │ └── usePlugin.tsx ├── index.ts ├── modules │ ├── SetColorModalContent │ │ ├── Color.tsx │ │ ├── ColorCell.tsx │ │ ├── ColorGrid.tsx │ │ ├── ColorName.tsx │ │ └── index.tsx │ └── SettingsPanel │ │ ├── SettingItemControlFull.tsx │ │ ├── WideTextInput.tsx │ │ └── index.tsx ├── plugin │ ├── FileColorPlugin.ts │ ├── FileColorSettingTab.tsx │ └── SetColorModal.tsx └── settings.ts ├── styles.css ├── tsconfig.json ├── version-bump.mjs └── versions.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | npm node_modules 2 | build -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | tag-version-prefix="" -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/README.md -------------------------------------------------------------------------------- /docs/images/add-color-rounded.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/docs/images/add-color-rounded.gif -------------------------------------------------------------------------------- /docs/images/hero-rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/docs/images/hero-rounded.png -------------------------------------------------------------------------------- /docs/images/icons-notes-rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/docs/images/icons-notes-rounded.png -------------------------------------------------------------------------------- /docs/images/set-color-rounded.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/docs/images/set-color-rounded.gif -------------------------------------------------------------------------------- /esbuild.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/esbuild.config.mjs -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/package.json -------------------------------------------------------------------------------- /src/components/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/src/components/Button/index.tsx -------------------------------------------------------------------------------- /src/components/SettingItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/src/components/SettingItem/index.tsx -------------------------------------------------------------------------------- /src/components/icons/AddCircleIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/src/components/icons/AddCircleIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/TrashIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/src/components/icons/TrashIcon.tsx -------------------------------------------------------------------------------- /src/config/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/src/config/styles.ts -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/src/global.d.ts -------------------------------------------------------------------------------- /src/hooks/useFile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/src/hooks/useFile.tsx -------------------------------------------------------------------------------- /src/hooks/useModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/src/hooks/useModal.tsx -------------------------------------------------------------------------------- /src/hooks/usePlugin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/src/hooks/usePlugin.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/modules/SetColorModalContent/Color.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/src/modules/SetColorModalContent/Color.tsx -------------------------------------------------------------------------------- /src/modules/SetColorModalContent/ColorCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/src/modules/SetColorModalContent/ColorCell.tsx -------------------------------------------------------------------------------- /src/modules/SetColorModalContent/ColorGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/src/modules/SetColorModalContent/ColorGrid.tsx -------------------------------------------------------------------------------- /src/modules/SetColorModalContent/ColorName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/src/modules/SetColorModalContent/ColorName.tsx -------------------------------------------------------------------------------- /src/modules/SetColorModalContent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/src/modules/SetColorModalContent/index.tsx -------------------------------------------------------------------------------- /src/modules/SettingsPanel/SettingItemControlFull.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/src/modules/SettingsPanel/SettingItemControlFull.tsx -------------------------------------------------------------------------------- /src/modules/SettingsPanel/WideTextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/src/modules/SettingsPanel/WideTextInput.tsx -------------------------------------------------------------------------------- /src/modules/SettingsPanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/src/modules/SettingsPanel/index.tsx -------------------------------------------------------------------------------- /src/plugin/FileColorPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/src/plugin/FileColorPlugin.ts -------------------------------------------------------------------------------- /src/plugin/FileColorSettingTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/src/plugin/FileColorSettingTab.tsx -------------------------------------------------------------------------------- /src/plugin/SetColorModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/src/plugin/SetColorModal.tsx -------------------------------------------------------------------------------- /src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/src/settings.ts -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/styles.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/tsconfig.json -------------------------------------------------------------------------------- /version-bump.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/version-bump.mjs -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ecustic/obsidian-file-color/HEAD/versions.json --------------------------------------------------------------------------------