├── .gitattributes ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── assets ├── cover.png └── tag-new.svg ├── changelog.md ├── manifest.json ├── package.json ├── src ├── code │ ├── main.ts │ └── modules │ │ ├── config.ts │ │ ├── convert-color.ts │ │ ├── default-settings.js │ │ ├── globals.ts │ │ ├── layers.ts │ │ ├── styler.ts │ │ ├── styles.ts │ │ └── utils.ts └── ui │ ├── App.svelte │ ├── assets │ ├── cover.png │ └── icons │ │ ├── checkmark.svg │ │ ├── frame-layers.svg │ │ ├── text-layers.svg │ │ ├── time.svg │ │ └── warning.svg │ ├── components │ ├── Button.svelte │ ├── Checkbox.svelte │ ├── Icon.svelte │ └── NumberField.svelte │ ├── main.html │ ├── main.js │ └── styles │ ├── _base.scss │ ├── _types.scss │ ├── _variables.scss │ └── all.scss ├── tsconfig.json └── webpack.config.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/README.md -------------------------------------------------------------------------------- /assets/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/assets/cover.png -------------------------------------------------------------------------------- /assets/tag-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/assets/tag-new.svg -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/changelog.md -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/package.json -------------------------------------------------------------------------------- /src/code/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/src/code/main.ts -------------------------------------------------------------------------------- /src/code/modules/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/src/code/modules/config.ts -------------------------------------------------------------------------------- /src/code/modules/convert-color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/src/code/modules/convert-color.ts -------------------------------------------------------------------------------- /src/code/modules/default-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/src/code/modules/default-settings.js -------------------------------------------------------------------------------- /src/code/modules/globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/src/code/modules/globals.ts -------------------------------------------------------------------------------- /src/code/modules/layers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/src/code/modules/layers.ts -------------------------------------------------------------------------------- /src/code/modules/styler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/src/code/modules/styler.ts -------------------------------------------------------------------------------- /src/code/modules/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/src/code/modules/styles.ts -------------------------------------------------------------------------------- /src/code/modules/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/src/code/modules/utils.ts -------------------------------------------------------------------------------- /src/ui/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/src/ui/App.svelte -------------------------------------------------------------------------------- /src/ui/assets/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/src/ui/assets/cover.png -------------------------------------------------------------------------------- /src/ui/assets/icons/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/src/ui/assets/icons/checkmark.svg -------------------------------------------------------------------------------- /src/ui/assets/icons/frame-layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/src/ui/assets/icons/frame-layers.svg -------------------------------------------------------------------------------- /src/ui/assets/icons/text-layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/src/ui/assets/icons/text-layers.svg -------------------------------------------------------------------------------- /src/ui/assets/icons/time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/src/ui/assets/icons/time.svg -------------------------------------------------------------------------------- /src/ui/assets/icons/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/src/ui/assets/icons/warning.svg -------------------------------------------------------------------------------- /src/ui/components/Button.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/src/ui/components/Button.svelte -------------------------------------------------------------------------------- /src/ui/components/Checkbox.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/src/ui/components/Checkbox.svelte -------------------------------------------------------------------------------- /src/ui/components/Icon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/src/ui/components/Icon.svelte -------------------------------------------------------------------------------- /src/ui/components/NumberField.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/src/ui/components/NumberField.svelte -------------------------------------------------------------------------------- /src/ui/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/src/ui/main.html -------------------------------------------------------------------------------- /src/ui/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/src/ui/main.js -------------------------------------------------------------------------------- /src/ui/styles/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/src/ui/styles/_base.scss -------------------------------------------------------------------------------- /src/ui/styles/_types.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/src/ui/styles/_types.scss -------------------------------------------------------------------------------- /src/ui/styles/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/src/ui/styles/_variables.scss -------------------------------------------------------------------------------- /src/ui/styles/all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/src/ui/styles/all.scss -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreincu/styler/HEAD/webpack.config.js --------------------------------------------------------------------------------