├── .gitignore ├── LICENSE ├── README.md ├── library ├── .npmignore ├── package.json ├── src │ ├── context.tsx │ ├── darklify-stylesheet.ts │ ├── darklify-value.ts │ ├── index.ts │ ├── types.ts │ └── use-darklify-mode.ts └── tsconfig.json ├── package.json ├── tsconfig.base.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admirsaheta/darklify/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admirsaheta/darklify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admirsaheta/darklify/HEAD/README.md -------------------------------------------------------------------------------- /library/.npmignore: -------------------------------------------------------------------------------- 1 | tsconfig.json 2 | -------------------------------------------------------------------------------- /library/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admirsaheta/darklify/HEAD/library/package.json -------------------------------------------------------------------------------- /library/src/context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admirsaheta/darklify/HEAD/library/src/context.tsx -------------------------------------------------------------------------------- /library/src/darklify-stylesheet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admirsaheta/darklify/HEAD/library/src/darklify-stylesheet.ts -------------------------------------------------------------------------------- /library/src/darklify-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admirsaheta/darklify/HEAD/library/src/darklify-value.ts -------------------------------------------------------------------------------- /library/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admirsaheta/darklify/HEAD/library/src/index.ts -------------------------------------------------------------------------------- /library/src/types.ts: -------------------------------------------------------------------------------- 1 | export type Mode = 'light' | 'dark' 2 | -------------------------------------------------------------------------------- /library/src/use-darklify-mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admirsaheta/darklify/HEAD/library/src/use-darklify-mode.ts -------------------------------------------------------------------------------- /library/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admirsaheta/darklify/HEAD/library/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admirsaheta/darklify/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admirsaheta/darklify/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admirsaheta/darklify/HEAD/yarn.lock --------------------------------------------------------------------------------