This is a theme that should be plugged in koldy-ui package.
import React from 'react';
import {App, ThemeManager} from 'koldy-ui';
import darkTheme from 'themes/koldy-ui-dark-theme/src/koldy-ui-dark-theme';
const theme = new ThemeManager({
json: darkTheme,
mode: 'debug'
});
const MyWeb = function () {
return (
<App theme={theme}>
Hi there!
</App>
);
};
Visit koldy.io for more info.