Some coding inspired theme presets for Strapi CMS.
Some coding inspired theme presets for Strapi CMS.

- Github dark mode
- Monokai
- Night owl
- One dark pro
- Shades of purple
- Synthwave
- Dracula
Install the package in your Strapi project.
``bashusing yarn
yarn add strapi-code-themes
💡 Usage
Inside the
/src/admin/app.js file you can apply the theme to your Strapi installation. Add the following lines:`
import { shadesOfPurple } from 'strapi-code-themes';export default {
config: {
theme: {
colors: shadesOfPurple,
},
},
};
`After setting up your theme you will have to rebuild you Strapi admin UI. To rebuild and restart Strapi run:
`bash
using yarn
yarn build --clean
yarn developusing npm
npm run build --clean
npm run develop
``Now you're all set. Enjoy your Strapi admin themes!
Feel free to fork and make a pull request of this plugin. All the input is welcome!
Give a star if this project helped you.