Loading repository data…
Loading repository data…
Ravikisha / repository
DronaUI is a modern, lightweight CSS framework inspired by popular frameworks like Bootstrap. It focuses on performance, scalability, and ease of use, providing developers with powerful tools to build responsive, customizable, and beautiful user interfaces.
DronaUI is a modern, lightweight CSS framework inspired by popular frameworks like Bootstrap. It focuses on performance, scalability, and ease of use, providing developers with powerful tools to build responsive, customizable, and beautiful user interfaces.
You can easily install DronaUI using npm:
npm install dronaui
Or include it directly via CDN:
<link rel="stylesheet" href="https://cdn.dronaui.com/1.0.0/dronaui.min.css">
To start using DronaUI, include the CSS file in your HTML file:
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="dronaui.min.css">
</head>
<body>
<div class="container">
<h1>Hello, world!</h1>
<button class="btn btn-primary">Click me</button>
</div>
</body>
</html>
DronaUI is built with Sass, allowing easy customization. Modify the existing Sass variables to change the design:
$primary-color: #4CAF50;
$secondary-color: #FFC107;
@import "dronaui.scss";
To contribute or modify DronaUI, clone the repository and install dependencies:
git clone https://github.com/Ravikisha/DronaUI.git
cd DronaUI
npm install
Compile the Sass files by running:
npm run build
Contributions are welcome! Please submit a pull request or open an issue to discuss any changes you would like to make.
DronaUI is licensed under the MIT License.