Customization

Theming

Metronic's global theme's is handled by KtUI's theme variables. To customize the theme to suit your project's needs, refer to the comprehensive KtUI Theming guide for detailed instructions and best practices.

Gray Colors

Metronic leverages KtUI theme variables to manage the global appearance of components, ensuring a seamless and consistent look across both light and dark modes. You can easily customize colors to align with your project's branding by using the extensive Tailwind CSS color palette or defining your own custom colors in the Tailwind configuration or KtUI theme files. For detailed guidance, refer to the Tailwind Colors documentation.
				
					/* Tailwind core */
@import 'tailwindcss';

/* Tailwind scan sources */
@source '../../dist/assets/vendors/ktui/';

/* Theme configs */
@import "./config.ktui";

/* KtUI styles */
@import '../../node_modules/@keenthemes/ktui/styles.css';

/* Metronic components  */
@import "./components/index";

/* Demos */
@import "./demos/demo1.css";