Library used to generate Semantic UI themes based on Semantic UI's default one and superhero made by semantic-ui-forest/forest-themes.
Installation is simple, execute the following script or clone SemanticUI into subfolder semantic-ui
and install npm packages
and gulp
.
git clone https://github.com/blast-project/SemanticLI.git
cd SemanticLI/
./init.sh
gulp build-dark
Output files are :
- dist/semantic-superhero.css
- dist/semantic-superhero.min.css
- dist/semantic.js
- dist/semantic.min.js
gulp build-default
Output files are :
- dist/semantic-librinfo.css
- dist/semantic-librinfo.min.css
- dist/semantic.js
- dist/semantic.min.js
Use in your project the generated files (minifyed or not) :
<!-- For the dark theme -->
<link rel="stylesheet" href="/css/semantic-superhero.min.css">
<!-- For the light theme -->
<link rel="stylesheet" href="/css/semantic-librinfo.min.css">
<!-- For any theme -->
<script src="/js/semantic.min.js"></script>