DeveloperBreeze

Ui/Ux Programming Tutorials, Guides & Best Practices

Explore 14+ expertly crafted ui/ux tutorials, components, and code examples. Stay productive and build faster with proven implementation strategies and design patterns from DeveloperBreeze.

ShadCN Cheatsheet

Cheatsheet April 12, 2025

npx shadcn-ui@latest init
# Select or type a new directory (e.g. `ui` or `components/ui`)
npx shadcn-ui@latest add theme

Getting Started with ApexCharts

Tutorial August 21, 2024

You can customize the colors of the chart using the colors option.

var options = {
    chart: {
        type: 'line'
    },
    series: [{
        name: 'Sales',
        data: [10, 20, 15, 30, 25, 40, 35]
    }],
    xaxis: {
        categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul']
    },
    colors: ['#FF5733'] // Custom line color
}

var chart = new ApexCharts(document.querySelector("#chart"), options);

chart.render();

CSS-in-JS Libraries Cheatsheet

Cheatsheet August 21, 2024

  • Limited support for advanced dynamic styling.
  • Smaller community.

Stitches is a CSS-in-JS library focused on fast styling with a utility-first API.

Comprehensive React Libraries Cheatsheet

Cheatsheet August 21, 2024

No preview available for this content.

Responsive Design Frameworks Cheatsheet

Cheatsheet August 21, 2024

  • Clean, modern look following Material Design.
  • Easy to use for rapid prototyping.
  • Less flexible than Tailwind CSS.
  • Heavier, may impact performance.