A modern UI library built on Tailwind CSS with built in dark mode.
A CDN can be a quick and easy way to use Flowshade UI in your project. Just insert the following into your <head>
tag:
<head>
<!--Include TailwindCSS CDN-->
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet" />
<!-- Include just Flowshade UI styles. -->
<link href="https://cdn.jsdelivr.net/npm/flowshadeui@latest/dist/css/flowshadeui.css" rel="stylesheet" />
<!-- Enable components that require a script. -->
<script src="https://cdn.jsdelivr.net/npm/flowshadeui@latest/dist/js/flowshadeui.js" defer></script>
</head>
Installing FlowshadeUI from npm can allow you to add FlowshadeUI as a plugin or directly require FlowshadeUI files from node_modules
.
$ npm i flowshadeui
In tailwind.config.js
:
module.exports = {
plugins: [
require("flowshadeui")
]
}
Documentation is still in the works. It will be out soon :)