
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
canvasly-ui
Advanced tools
A calm, minimalist design system with timeless aesthetics
Built with pure HTML, CSS, and JavaScript for maximum compatibility and performance
Canvasly UI embraces four core principles that guide every design decision:
<!-- Include Canvasly UI -->
<link rel="stylesheet" href="https://unpkg.com/canvasly-ui/dist/canvasly.css">
<script src="https://unpkg.com/canvasly-ui/dist/canvasly.js"></script>
<!-- Include Lucide Icons -->
<script src="https://unpkg.com/lucide@latest/dist/umd/lucide.js"></script>
npm install canvasly-ui
import 'canvasly-ui/dist/canvasly.css'
import 'canvasly-ui/dist/canvasly.js'
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Canvasly App</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
<!-- Canvasly UI -->
<link rel="stylesheet" href="https://unpkg.com/canvasly-ui/dist/canvasly.css">
<script src="https://unpkg.com/lucide@latest/dist/umd/lucide.js"></script>
</head>
<body>
<div class="canvas-container">
<div class="canvas-card">
<div class="canvas-card__header">
<h2 class="canvas-card__title">Welcome to Canvasly UI</h2>
<p class="canvas-card__subtitle">A calm, minimalist design system</p>
</div>
<div class="canvas-card__body">
<p>Start building beautiful interfaces with our components.</p>
<button class="canvas-btn canvas-btn--primary">
<i data-lucide="rocket"></i>
Get Started
</button>
</div>
</div>
</div>
<script src="https://unpkg.com/canvasly-ui/dist/canvasly.js"></script>
<script>lucide.createIcons();</script>
</body>
</html>
Canvasly UI includes 25+ carefully crafted components organized into logical categories:
All design decisions are centralized in CSS custom properties for easy customization:
:root {
/* Colors */
--canvas-bg: #f9f9f9;
--canvas-surface: #ffffff;
--canvas-border: #e5e5e5;
--canvas-text: #333333;
--canvas-muted: #666666;
--canvas-primary: #2563eb;
/* Typography */
--canvas-font-family: 'Inter', system-ui, sans-serif;
--canvas-font-size-sm: 14px;
--canvas-font-size-base: 16px;
--canvas-font-size-lg: 20px;
/* Spacing */
--canvas-space-2: 8px;
--canvas-space-4: 16px;
--canvas-space-6: 24px;
/* Border Radius */
--canvas-radius-sm: 4px;
--canvas-radius-md: 12px;
/* Transitions */
--canvas-transition: all 0.15s ease;
}
Every component is built with mobile-first responsive design:
# Clone the repository
git clone https://github.com/canvasly/canvasly-ui.git
cd canvasly-ui
# Install dependencies
npm install
# Build distribution files
npm run build
# Start development server
npm run dev
canvasly-ui/
├── src/
│ ├── tokens.css # Design tokens
│ ├── reset.css # CSS reset
│ └── components/ # Individual components
├── dist/ # Built files
├── demo-final.html # Complete demo
├── docs.html # Documentation
└── tutorial.html # Getting started tutorial
npm run build # Build CSS and JS bundles
npm run build:css # Build CSS only
npm run build:js # Build JS only
npm run dev # Start development server
Canvasly UI supports all modern browsers:
We welcome contributions! Please read our Code of Conduct first.
git checkout -b feature/amazing-feature)git commit -m 'Add amazing feature')git push origin feature/amazing-feature)This project is licensed under the MIT License - see the LICENSE file for details.
Made with ❤️ for the developer community
FAQs
A calm, minimalist design system with timeless aesthetics
We found that canvasly-ui demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.