lightswind
Version:
A collection of beautifully crafted React Components, Blocks & Templates built with Tailwind CSS. Create stunning web applications effortlessly by using our 100+ professional and animated react components.
1,095 lines (974 loc) β’ 30.1 kB
Markdown
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div align="center">
<img src="https://codewithmuhilan.com/Extra-Assets/lightwind-logo.png" alt="Lightswind UI Logo" width="180" />
<h1 align="center">Lightswind UI 3.1.16</h1>
<p align="center">
<b>A collection of beautifully crafted React Components, Blocks & Templates built with Tailwind CSS. Create stunning web applications effortlessly by using our 100+ professional and animated react components.</b>
</p>
<p align="center">
<a href="https://github.com/codewithMUHILAN/Lightswind-UI-Library/stargazers">
<img src="https://img.shields.io/github/stars/codewithMUHILAN/Lightswind-UI-Library?style=flat-square&labelColor=000000&color=4d4d4d" alt="GitHub Stars" />
</a>
<a href="https://www.npmjs.com/package/lightswind">
<img src="https://img.shields.io/npm/v/lightswind?style=flat-square&labelColor=000000&color=4d4d4d" alt="NPM Version" />
</a>
<a href="https://github.com/codewithMUHILAN/Lightswind-UI-Library/blob/main/README.md">
<img src="https://img.shields.io/github/license/codewithMUHILAN/Lightswind-UI-Library?style=flat-square&labelColor=000000&color=4d4d4d" alt="License" />
</a>
</p>
<br />
<!-- <p align="center">
<img src="https://i.ibb.co/CtFSK18/lightswind-components-display.png" alt="Lightswind UI Components" width="90%" />
</p> -->
</div>
<hr />
## π¦ Installation
<h2>Step 1: Install Tailwind CSS</h2>
<p>Lightswind UI components are built on Tailwind CSS. Make sure to install Tailwind in your project by following the instructions at <a href="https://tailwindcss.com/docs/installation" target="_blank" rel="noopener noreferrer">Tailwind CSS Installation Guide</a>.</p>
<!-- <h3>01: Create your project</h3> -->
<!-- <p>Start by creating a new Vite project if you donβt have one set up already. The most common approach is to use Create Vite.</p> -->
<!-- ```bash
npm create vite@latest my-project
cd my-project
``` -->
<!-- <h3>02: Install Tailwind CSS</h3>
<p>Install `tailwindcss` and `@tailwindcss/vite` via npm.</p>
```bash
npm install tailwindcss @tailwindcss/vite
```
<h3>03: Configure the Vite plugin</h3>
<p>Add the `@tailwindcss/vite` plugin to your Vite configuration.
</p>
```bash
import { defineConfig } from 'vite'
import tailwindcss from '@tailwindcss/vite'
export default defineConfig({
plugins: [
tailwindcss(),
],
})
``` -->
<br/>
<h2>Step 2: Install Lightswind UI Package</h2>
<p>Add the Lightswind UI package to your project dependencies.</p>
```bash
# Using npm
npm install lightswind@lastest
# Using yarn
yarn add lightswind
# Using pnpm
pnpm add lightswind
```
<br/>
<h2>Step 3: Initialize Components</h2>
<p>Set up Lightswind UI components in your project structure.</p>
<h3>Full Setup</h3>
<p>Our CLI tool will automatically install all components, utilities, and styles to your project.</p>
```bash
npx create-lightswind
```
<span>
What this command does?
Creates src/components/lightswind src/components/lightswind folder
All UI components are organized in this directory.
Sets up src/lib folder
Contains utilities and helpers for component functionality.
Configures theme settings
Sets up custom theme variables and Tailwind configuration.
Adds TypeScript types
Includes comprehensive type definitions for all components.
Copies CSS styles
Places the `lightswind.css` file in `src/components/lightswind.css`.
</span>
<h3>Individual Component</h3>
<p>Use the CLI to install only the components you need. Replace `[component-name]` with the desired component (e.g., `button`, `card`, `dialog`).</p>
```bash
npx create-lightswind button
```
<span>
What this command does?
Copies the component file to src/components/lightswind
The selected component's source code will be available in this directory.
Copies associated utility files to src/lib
Any necessary helper functions or utilities for the component are included.
Copies the main Lightswind CSS to src/components/lightswind.css
The core styles for Lightswind UI are provided.
</span>
<br/>
<h2>Step 4: Configure Styles</h2>
<p>Integrate Lightswind UI's core styles into your project using one of the methods below.</p>
<h3>Use as Plugin</h3>
<p>Using the Tailwind CSS plugin is the easiest way to get started and ensures seamless integration and updates.</p>
```bash
For Tailwind CSS v4.x (Alpha)
----------------------
/* In your main CSS file (e.g., globals.css) */
@import 'tailwindcss';
@plugin 'lightswind/plugin'; /* <-- Add this line */
/* Your custom styles below */
For Tailwind CSS v3.x
----------------------
// tailwind.config.js
module.exports = {
// ...
plugins: [
require('lightswind/plugin'),
// ...
],
}
```
<h3>Import CSS File</h3>
<p>This method requires you to manually import the static CSS file generated by the CLI. This is not recommended if you plan to use the plugin system.</p>
```bash
/* Add to your main CSS file (e.g., globals.css) */
@import "./src/components/lightswind.css";
(or)
@import "@/components/lightswind/lightswind.css";
```
<br/>
<h2>Final Step: Using Components</h2>
<p>Start building your interface with Lightswind UI components.</p>
<h3>Component Structure</h3>
<p>After running the initialization command (e.g., `npx create-lightswind`), your project structure will be updated to include Lightswind UI components and utilities.</p>
```bash
src/
βββ components/
β βββ lightswind/
β β βββ button.tsx
β β βββ card.tsx
β β βββ dialog.tsx
β β βββ ... more components
β βββ ... your components
βββ lib/
β βββ utils.ts
β βββ theme.ts
βββ components/lightswind.css <-- Lightswind UI core styles
βββ ... rest of your project
```
<h3>Ready to go!</h3>
<p>You've successfully installed and set up Lightswind UI components in your project.</p>
<h2>π View Full Installation Guide</h2>
<p>
For a complete setup walkthrough with examples and configuration tips, visit:
<a href="https://lightswind.com/components/installation" target="_blank" rel="noopener noreferrer">
https://lightswind.com/components/installation
</a>
</p>
```
<h3>Start building your interface with Lightswind UI components</h3>
## π§ Requirements
- React 18+
- Tailwind CSS 3+
- TypeScript 4.9+ (for TypeScript users)
## π Quick Start
```jsx
import React from "react";
import { Button } from "@/components/lightswind/button";
import {
Card,
CardHeader,
CardTitle,
CardDescription,
CardContent,
CardFooter,
} from "@/components/lightswind/card";
import { Input } from "@/components/lightswind/input";
export default function LoginPage() {
return (
<div className="min-h-screen flex items-center justify-center bg-slate-50 dark:bg-slate-900 p-4">
<Card className="w-full max-w-md shadow-lg">
<CardHeader className="space-y-1">
<CardTitle className="text-2xl font-bold">Sign in</CardTitle>
<CardDescription>
Enter your credentials to access your account
</CardDescription>
</CardHeader>
<CardContent>
<div className="space-y-4">
<div className="space-y-2">
<label htmlFor="email" className="text-sm font-medium">
Email
</label>
<Input id="email" type="email" placeholder="your@email.com" />
</div>
<div className="space-y-2">
<label htmlFor="password" className="text-sm font-medium">
Password
</label>
<Input id="password" type="password" placeholder="β’β’β’β’β’β’β’β’" />
</div>
</div>
</CardContent>
<CardFooter>
<Button className="w-full">Sign in</Button>
</CardFooter>
</Card>
</div>
);
}
```
## β¨ Core Features
- **β‘ Responsive by Default** β All components are designed to work across devices of all sizes
- **β‘ Themeable** β Customize the look and feel to match your brand identity
- **β‘ Accessible** β Follows WAI-ARIA guidelines for inclusive user interfaces
- **β‘ Modern Animations** β Subtle animations and transitions enhance user experience
- **β‘ CLI Installation** β Quickly set up projects with our simple and powerful CLI tool
- **β‘ AI Assistance** β Get smart recommendations and code suggestions powered by AI for faster development
## π§© Component Library
Create stunning web applications effortlessly by using our 100+ professional and animated react components.:
### Our Components List
<ul className="space-y-4">
<li>
<h3 className="text-xl font-bold mb-2">Get Started</h3>
<ul className="ml-4 list-disc text-sm text-muted-foreground">
<li><a href="https://lightswind.com/components/introduction" target="_blank">Introduction</a></li>
<li><a href="https://lightswind.com/components/installation" target="_blank">Installation</a></li>
</ul>
</li>
<li>
<h3 className="text-xl font-bold mb-2">3D Elements</h3>
<ul className="ml-4 list-disc text-sm text-muted-foreground">
<li>
<a href="https://lightswind.com/components/3d-image-ring" target="_blank">
3d Image Ring
</a>
</li>
<li>
<a href="https://lightswind.com/components/3d-carousel" target="_blank">
3d Carousel
</a>
</li>
<li>
<a href="https://lightswind.com/components/3d-hover-gallery" target="_blank">
3d Hover Gallery
</a>
</li>
<li>
<a href="https://lightswind.com/components/3d-marquee" target="_blank">
3d Marquee
</a>
</li>
<li>
<a href="https://lightswind.com/components/3d-model-viewer" target="_blank">
3d Model Viewer
</a>
</li>
<li>
<a href="https://lightswind.com/components/3d-perspective-card" target="_blank">
3d Perspective Card
</a>
</li>
<li>
<a href="https://lightswind.com/components/3d-scroll-trigger" target="_blank">
3d Scroll Trigger
</a>
</li>
<li>
<a href="https://lightswind.com/components/scroll-carousel" target="_blank">
Scroll Carousel <span className="text-xs text-red-500">New</span>
</a>
</li>
<li>
<a href="https://lightswind.com/components/sparkle-navbar" target="_blank">
Sparkle Navbar <span className="text-xs text-red-500">New</span>
</a>
</li>
</ul>
</li>
<li>
<h3 className="text-xl font-bold mb-2">Background</h3>
<ul className="ml-4 list-disc text-sm text-muted-foreground mt-4">
<li>
<a href="https://lightswind.com/components/animated-wave" target="_blank">
Animated Wave
</a>
</li>
<li>
<a href="https://lightswind.com/components/animated-bubble-particles" target="_blank">
Animated Bubble Particles
</a>
</li>
<li>
<a href="https://lightswind.com/components/aurora-shader" target="_blank">
Aurora Shader <span className="text-xs text-red-500">New</span>
</a>
</li>
<li>
<a href="https://lightswind.com/components/grid-dot-backgrounds" target="_blank">
Grid Dot Backgrounds
</a>
</li>
<li>
<a href="https://lightswind.com/components/gradient-background" target="_blank">
Gradient Background
</a>
</li>
<li>
<a href="https://lightswind.com/components/hell-background" target="_blank">
Hell Background
</a>
</li>
<li>
<a href="https://lightswind.com/components/particles-background" target="_blank">
Particles Background
</a>
</li>
<li>
<a href="https://lightswind.com/components/reflect-background" target="_blank">
Reflect Background
</a>
</li>
<li>
<a href="https://lightswind.com/components/smokey-background" target="_blank">
Smokey Background
</a>
</li>
<li>
<a href="https://lightswind.com/components/shader-background" target="_blank">
Shader Background
</a>
</li>
<li>
<a href="https://lightswind.com/components/sparkle-particles" target="_blank">
Sparkle Particles
</a>
</li>
<li>
<a href="https://lightswind.com/components/stripes-background" target="_blank">
Stripes Background
</a>
</li>
<li>
<a href="https://lightswind.com/components/wave-background" target="_blank">
Wave Background
</a>
</li>
</ul>
</li>
<li>
<h3 className="text-xl font-bold mb-2">Button</h3>
<ul className="ml-4 list-disc text-sm text-muted-foreground mt-4">
<li>
<a href="https://lightswind.com/components/border-beam" target="_blank">
Border Beam
</a>
</li>
<li>
<a href="https://lightswind.com/components/confetti-button" target="_blank">
Confetti Button
</a>
</li>
<li>
<a href="https://lightswind.com/components/gradient-button" target="_blank">
Gradient Button
</a>
</li>
<li>
<a href="https://lightswind.com/components/ripple-button" target="_blank">
Ripple Button
</a>
</li>
<li>
<a href="https://lightswind.com/components/shine-button" target="_blank">
Shine Button
</a>
</li>
<li>
<a href="https://lightswind.com/components/trial-button" target="_blank">
Trial Button
</a>
</li>
</ul>
</li>
<li>
<h3 className="text-xl font-bold mb-2">Components</h3>
<ul className="ml-4 list-disc text-sm text-muted-foreground mt-4">
<li>
<a href="https://lightswind.com/components/animated-notification" target="_blank">
Animated Notification
</a>
</li>
<li>
<a href="https://lightswind.com/components/bento-grid" target="_blank">
Bento Grid
</a>
</li>
<li>
<a href="https://lightswind.com/components/code-hover-cards" target="_blank">
Code Hover Cards
</a>
</li>
<li>
<a href="https://lightswind.com/components/count-up" target="_blank">
Count Up
</a>
</li>
<li>
<a href="https://lightswind.com/components/dock" target="_blank">
Dock
</a>
</li>
<li>
<a href="https://lightswind.com/components/drag-order-list" target="_blank">
Drag Order List
</a>
</li>
<li>
<a href="https://lightswind.com/components/dynamic-navigation" target="_blank">
Dynamic Navigation
</a>
</li>
<li>
<a href="https://lightswind.com/components/glass-folder" target="_blank">
Glass Folder
</a>
</li>
<li>
<a href="https://lightswind.com/components/globe" target="_blank">
Globe
</a>
</li>
<li>
<a href="https://lightswind.com/components/glowing-cards" target="_blank">
Glowing Cards
</a>
</li>
<li>
<a href="https://lightswind.com/components/hamburger-menu-overlay" target="_blank">
Hamburger Menu Overlay
</a>
</li>
<li>
<a href="https://lightswind.com/components/image-reveal" target="_blank">
Image Reveal
</a>
</li>
<li>
<a href="https://lightswind.com/components/image-trail-effect" target="_blank">
Image Trail Effect
</a>
</li>
<li>
<a href="https://lightswind.com/components/interactive-card" target="_blank">
Interactive Card
</a>
</li>
<li>
<a href="https://lightswind.com/components/interactive-gradient-card" target="_blank">
Interactive Gradient Card
</a>
</li>
<li>
<a href="https://lightswind.com/components/lens" target="_blank">
Lens
</a>
</li>
<li>
<a href="https://lightswind.com/components/magic-loader" target="_blank">
Magic Loader
</a>
</li>
<li>
<a href="https://lightswind.com/components/morphing-navigation" target="_blank">
Morphing Navigation
</a>
</li>
<li>
<a href="https://lightswind.com/components/orbit-card" target="_blank">
Orbit Card
</a>
</li>
<li>
<a href="https://lightswind.com/components/password-strength-indicator" target="_blank">
Password Strength Indicator
</a>
</li>
<li>
<a href="https://lightswind.com/components/scroll-list" target="_blank">
Scroll List
</a>
</li>
<li>
<a href="https://lightswind.com/components/scroll-stack" target="_blank">
Scroll Stack
</a>
</li>
<li>
<a href="https://lightswind.com/components/scroll-timeline" target="_blank">
Scroll Timeline
</a>
</li>
<li>
<a href="https://lightswind.com/components/seasonal-hover-cards" target="_blank">
Seasonal Hover Cards
</a>
</li>
<li>
<a href="https://lightswind.com/components/sliding-cards" target="_blank">
Sliding Cards
</a>
</li>
<li>
<a href="https://lightswind.com/components/sliding-logo-marquee" target="_blank">
Sliding Logo Marquee
</a>
</li>
<li>
<a href="https://lightswind.com/components/stack-list" target="_blank">
Stack List
</a>
</li>
<li>
<a href="https://lightswind.com/components/team-carousel" target="_blank">
Team Carousel
</a>
</li>
<li>
<a href="https://lightswind.com/components/terminal-card" target="_blank">
Terminal Card
</a>
</li>
<li>
<a href="https://lightswind.com/components/top-loader" target="_blank">
Top Loader
</a>
</li>
<li>
<a href="https://lightswind.com/components/top-sticky-bar" target="_blank">
Top Sticky Bar
</a>
</li>
<li>
<a href="https://lightswind.com/components/trusted-users" target="_blank">
Trusted Users
</a>
</li>
<li>
<a href="https://lightswind.com/components/ripple-loader" target="_blank">
Ripple Loader
</a>
</li>
<li>
<a href="https://lightswind.com/components/woofy-hover-image" target="_blank">
Woofy Hover Image
</a>
</li>
</ul>
</li>
<li>
<h3 className="text-xl font-bold mb-2">Cursor</h3>
<ul className="ml-4 list-disc text-sm text-muted-foreground mt-4">
<li>
<a href="https://lightswind.com/components/canvas-confetti-cursor" target="_blank">
Canvas Confetti Cursor
</a>
</li>
<li>
<a href="https://lightswind.com/components/particle-orbit-effect" target="_blank">
Particle Orbit Effect
</a>
</li>
<li>
<a href="https://lightswind.com/components/smokey-cursor" target="_blank">
Smokey Cursor
</a>
</li>
<li>
<a href="https://lightswind.com/components/smooth-cursor" target="_blank">
Smooth Cursor
</a>
</li>
</ul>
</li>
<li>
<h3 className="text-xl font-bold mb-2">Text</h3>
<ul className="ml-4 list-disc text-sm text-muted-foreground mt-4">
<li>
<a href="https://lightswind.com/components/aurora-text-effect" target="_blank">
Aurora Text Effect
</a>
</li>
<li>
<a href="https://lightswind.com/components/scroll-reveal" target="_blank">
Scroll Reveal
</a>
</li>
<li>
<a href="https://lightswind.com/components/shiny-text" target="_blank">
Shiny Text
</a>
</li>
<li>
<a href="https://lightswind.com/components/text-scroll-marquee" target="_blank">
Text Scroll Marquee
</a>
</li>
<li>
<a href="https://lightswind.com/components/typewriter-input" target="_blank">
Typewriter Input
</a>
</li>
<li>
<a href="https://lightswind.com/components/typing-text" target="_blank">
Typing Text
</a>
</li>
<li>
<a href="https://lightswind.com/components/video-text" target="_blank">
Video Text
</a>
</li>
</ul>
</li>
<li>
<h3 className="text-xl font-bold mb-2">UI Elements</h3>
<ul className="ml-4 list-disc text-sm text-muted-foreground mt-4">
<li>
<a href="https://lightswind.com/components/alert" target="_blank">
Alert
</a>
</li>
<li>
<a href="https://lightswind.com/components/alert-dialog" target="_blank">
Alert Dialog
</a>
</li>
<li>
<a href="https://lightswind.com/components/avatar" target="_blank">
Avatar
</a>
</li>
<li>
<a href="https://lightswind.com/components/badge" target="_blank">
Badge
</a>
</li>
<li>
<a href="https://lightswind.com/components/button" target="_blank">
Button
</a>
</li>
<li>
<a href="https://lightswind.com/components/card" target="_blank">
Card
</a>
</li>
<li>
<a href="https://lightswind.com/components/carousel" target="_blank">
Carousel
</a>
</li>
<li>
<a href="https://lightswind.com/components/chart" target="_blank">
Chart
</a>
</li>
<li>
<a href="https://lightswind.com/components/collapsible" target="_blank">
Collapsible
</a>
</li>
<li>
<a href="https://lightswind.com/components/context-menu" target="_blank">
Context Menu
</a>
</li>
<li>
<a href="https://lightswind.com/components/dialog" target="_blank">
Dialog
</a>
</li>
<li>
<a href="https://lightswind.com/components/drawer" target="_blank">
Drawer
</a>
</li>
<li>
<a href="https://lightswind.com/components/dropdown-menu" target="_blank">
Dropdown Menu
</a>
</li>
<li>
<a href="https://lightswind.com/components/hover-card" target="_blank">
Hover Card
</a>
</li>
<li>
<a href="https://lightswind.com/components/popover" target="_blank">
Popover
</a>
</li>
<li>
<a href="https://lightswind.com/components/progress" target="_blank">
Progress
</a>
</li>
<li>
<a href="https://lightswind.com/components/sheet" target="_blank">
Sheet
</a>
</li>
<li>
<a href="https://lightswind.com/components/skeleton" target="_blank">
Skeleton
</a>
</li>
<li>
<a href="https://lightswind.com/components/table" target="_blank">
Table
</a>
</li>
<li>
<a href="https://lightswind.com/components/toast" target="_blank">
Toast
</a>
</li>
<li>
<a href="https://lightswind.com/components/tooltip" target="_blank">
Tooltip
</a>
</li>
</ul>
</li>
<li>
<h3 className="text-xl font-bold mb-2">Form Controls</h3>
<ul className="ml-4 list-disc text-sm text-muted-foreground mt-4">
<li>
<a href="https://lightswind.com/components/calendar" target="_blank">
Calendar
</a>
</li>
<li>
<a href="https://lightswind.com/components/checkbox" target="_blank">
Checkbox
</a>
</li>
<li>
<a href="https://lightswind.com/components/command" target="_blank">
Command
</a>
</li>
<li>
<a href="https://lightswind.com/components/form" target="_blank">
Form
</a>
</li>
<li>
<a href="https://lightswind.com/components/input" target="_blank">
Input
</a>
</li>
<li>
<a href="https://lightswind.com/components/input-otp" target="_blank">
Input Otp
</a>
</li>
<li>
<a href="https://lightswind.com/components/label" target="_blank">
Label
</a>
</li>
<li>
<a href="https://lightswind.com/components/radio-group" target="_blank">
Radio Group
</a>
</li>
<li>
<a href="https://lightswind.com/components/select" target="_blank">
Select
</a>
</li>
<li>
<a href="https://lightswind.com/components/slider" target="_blank">
Slider
</a>
</li>
<li>
<a href="https://lightswind.com/components/switch" target="_blank">
Switch
</a>
</li>
<li>
<a href="https://lightswind.com/components/textarea" target="_blank">
Textarea
</a>
</li>
<li>
<a href="https://lightswind.com/components/toggle" target="_blank">
Toggle
</a>
</li>
<li>
<a href="https://lightswind.com/components/toggle-group" target="_blank">
Toggle Group
</a>
</li>
</ul>
</li>
<li>
<h3 className="text-xl font-bold mb-2">Layout</h3>
<ul className="ml-4 list-disc text-sm text-muted-foreground mt-4">
<li>
<a href="https://lightswind.com/components/accordion" target="_blank">
Accordion
</a>
</li>
<li>
<a href="https://lightswind.com/components/aspect-ratio" target="_blank">
Aspect Ratio
</a>
</li>
<li>
<a href="https://lightswind.com/components/resizable" target="_blank">
Resizable
</a>
</li>
<li>
<a href="https://lightswind.com/components/scroll-area" target="_blank">
Scroll Area
</a>
</li>
<li>
<a href="https://lightswind.com/components/separator" target="_blank">
Separator
</a>
</li>
<li>
<a href="https://lightswind.com/components/tabs" target="_blank">
Tabs
</a>
</li>
</ul>
</li>
<li>
<h3 className="text-xl font-bold mb-2">Navigation</h3>
<ul className="ml-4 list-disc text-sm text-muted-foreground mt-4">
<li>
<a href="https://lightswind.com/components/breadcrumb" target="_blank">
Breadcrumb
</a>
</li>
<li>
<a href="https://lightswind.com/components/command" target="_blank">
Command
</a>
</li>
<li>
<a href="https://lightswind.com/components/menubar" target="_blank">
Menubar
</a>
</li>
<li>
<a href="https://lightswind.com/components/navigation-menu" target="_blank">
Navigation Menu
</a>
</li>
<li>
<a href="https://lightswind.com/components/pagination" target="_blank">
Pagination
</a>
</li>
<li>
<a href="https://lightswind.com/components/sidebar" target="_blank">
Sidebar
</a>
</li>
</ul>
</li>
</ul>
## π Theming System
Lightswind UI uses CSS variables for theming, making it easy to customize:
```css
":root": {
"--primarylw": "#173eff",
"--primarylw-2": "#3758f9",
"--darklw": "#11131B",
"--darklw-2": "#1a1d25",
"--greedy": "#07eae6",
"--background": "0 0% 100%",
"--foreground": "0 0% 0%",
"--card": "0 0% 100%",
"--card-foreground": "0 0% 0%",
"--popover": "0 0% 100%",
"--popover-foreground": "0 0% 0%",
"--primary": "0 0% 0%",
"--primary-foreground": "0 0% 100%",
"--secondary": "0 0% 96%",
"--secondary-foreground": "0 0% 0%",
"--muted": "0 0% 96%",
"--muted-foreground": "0 0% 45%",
"--accent": "0 0% 96%",
"--accent-foreground": "0 0% 0%",
"--destructive": "0 84% 60%",
"--destructive-foreground": "0 0% 100%",
"--border": "0 0% 90%",
"--input": "0 0% 90%",
"--ring": "0 0% 0%",
"--radius": "0.5rem",
"--scrollbar-thumb": "0 0% 75%",
"--scrollbar-track": "0 0% 95%",
"--scrollbar-hover": "0 0% 65%",
},
// Dark theme
".dark": {
"--primarylw": "#173eff",
"--primarylw-2": "#3758f9",
"--darklw": "#11131B",
"--darklw-2": "#1a1d25",
"--greedy": "#07eae6",
"--background": "0 0% 0%",
"--foreground": "0 0% 100%",
"--card": "0 0% 5%",
"--card-foreground": "0 0% 100%",
"--popover": "0 0% 5%",
"--popover-foreground": "0 0% 100%",
"--primary": "0 0% 100%",
"--primary-foreground": "0 0% 0%",
"--secondary": "0 0% 15%",
"--secondary-foreground": "0 0% 100%",
"--muted": "0 0% 15%",
"--muted-foreground": "0 0% 65%",
"--accent": "0 0% 15%",
"--accent-foreground": "0 0% 100%",
"--destructive": "0 62% 30%",
"--destructive-foreground": "0 0% 100%",
"--border": "#000",
"--input": "0 0% 20%",
"--ring": "0 0% 20%",
"--scrollbar-thumb": "0 0% 25%",
"--scrollbar-track": "0 0% 10%",
"--scrollbar-hover": "0 0% 35%",
},
```
## π Documentation
For comprehensive documentation including all components, props, and examples:
[**View Documentation**](https://lightswind.com/components/introduction)
## π€ Contributing
We welcome contributions to Lightswind UI! Here's how you can help:
1. <a href="https://github.com/codewithMUHILAN/Lightswind-UI-Library/issues/new?template=Blank+issue" target="_blank">Request a feature</a>
2. <a href="https://github.com/codewithMUHILAN/Lightswind-UI-Library/issues/new?template=Blank+issue" target="_blank">Report an issue</a>
3. <a href="https://buymeacoffee.com/codewithmuhilan" target="_blank">Buy me a Coffee (Support Usβ€οΈ)</a>
4. <a href="https://lightswind.com/pricing" target="_blank">Buy Our Premium Plan (Support Usβ€οΈ)</a>
5. <a href="https://github.com/codewithMUHILAN/Lightswind-UI-Library" target="_blank">Star out Repository (Star Usβ€οΈ)</a>
## π License
Lightswind UI is licensed under the [MIT License].
---
<div align="center">
<p>
<sub>Designed and built with β€οΈ by the <a href="https://www.instagram.com/codewith_muhilan/" target="_blank" > Code with Muhilan</a></sub>
</p>
<p>
<a href="https://instagram.com/codewith_muhilan/" target="_blank">
<img src="https://img.shields.io/badge/Follow-@codewith_muhilan-blue?style=social&logo=instagram" alt="Instagram Follow" />
</a>
</p>
</div>
<script src="https://cdn.tailwindcss.com"></script>
</body>
</html>