├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── README.md ├── eslint.config.js ├── examples └── media │ ├── .gitignore │ ├── index.html │ ├── package.json │ ├── public │ └── vite.svg │ ├── src │ ├── App.css │ ├── App.tsx │ ├── assets │ │ └── react.svg │ ├── index.css │ ├── main.tsx │ └── vite-env.d.ts │ ├── tsconfig.json │ ├── tsconfig.node.json │ ├── unocss.config.ts │ └── vite.config.ts ├── package.json ├── playground ├── .gitignore ├── .vscode │ └── extensions.json ├── README.md ├── index.html ├── package.json ├── public │ └── vite.svg ├── src │ ├── App.vue │ ├── assets │ │ └── vue.svg │ ├── main.ts │ └── vite-env.d.ts ├── tests │ └── build.test.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── renovate.json ├── src ├── helpers.ts └── index.ts ├── tests └── index.test.ts └── tsconfig.json /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/eslint.config.js -------------------------------------------------------------------------------- /examples/media/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/examples/media/.gitignore -------------------------------------------------------------------------------- /examples/media/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/examples/media/index.html -------------------------------------------------------------------------------- /examples/media/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/examples/media/package.json -------------------------------------------------------------------------------- /examples/media/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/examples/media/public/vite.svg -------------------------------------------------------------------------------- /examples/media/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/examples/media/src/App.css -------------------------------------------------------------------------------- /examples/media/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/examples/media/src/App.tsx -------------------------------------------------------------------------------- /examples/media/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/examples/media/src/assets/react.svg -------------------------------------------------------------------------------- /examples/media/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/examples/media/src/index.css -------------------------------------------------------------------------------- /examples/media/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/examples/media/src/main.tsx -------------------------------------------------------------------------------- /examples/media/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/media/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/examples/media/tsconfig.json -------------------------------------------------------------------------------- /examples/media/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/examples/media/tsconfig.node.json -------------------------------------------------------------------------------- /examples/media/unocss.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/examples/media/unocss.config.ts -------------------------------------------------------------------------------- /examples/media/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/examples/media/vite.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/package.json -------------------------------------------------------------------------------- /playground/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/playground/.gitignore -------------------------------------------------------------------------------- /playground/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["Vue.volar"] 3 | } 4 | -------------------------------------------------------------------------------- /playground/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/playground/README.md -------------------------------------------------------------------------------- /playground/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/playground/index.html -------------------------------------------------------------------------------- /playground/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/playground/package.json -------------------------------------------------------------------------------- /playground/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/playground/public/vite.svg -------------------------------------------------------------------------------- /playground/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/playground/src/App.vue -------------------------------------------------------------------------------- /playground/src/assets/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/playground/src/assets/vue.svg -------------------------------------------------------------------------------- /playground/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/playground/src/main.ts -------------------------------------------------------------------------------- /playground/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/playground/src/vite-env.d.ts -------------------------------------------------------------------------------- /playground/tests/build.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/playground/tests/build.test.ts -------------------------------------------------------------------------------- /playground/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/playground/tsconfig.json -------------------------------------------------------------------------------- /playground/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/playground/tsconfig.node.json -------------------------------------------------------------------------------- /playground/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/playground/vite.config.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - playground 3 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/renovate.json -------------------------------------------------------------------------------- /src/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/src/helpers.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/src/index.ts -------------------------------------------------------------------------------- /tests/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/tests/index.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unocss-community/unocss-preset-theme/HEAD/tsconfig.json --------------------------------------------------------------------------------