SMART IPTV PRO WEB Documentation
  • Introduction
  • Quick Start Guide
    • Prerequisites
    • Download the Project
    • Install Dependencies
    • Start the Development Server
    • Build for Production (Optional)
    • Edit the Project
  • Customizing the Project
    • Changing Icons
    • Changing Text
    • Changing Colors
  • Building the Project
  • Uploading the Project to Hosting
Powered by GitBook
On this page
  1. Customizing the Project

Changing Colors

The project uses Flowbite-React, which works seamlessly with Tailwind CSS. To change the default colors of the app, you will need to modify the Tailwind configuration file tailwind.config.js.

1 - Open the tailwind.config.js file.

2 - Locate the theme.extend.colors section.

3 - Add or modify colors as needed. For example:

```javascript
 theme: {
    extend: {},
    colors: {
      primary: {
        50: "#E8F1F8",
        100: "#D1E3F1",
        200: "#B9D5EA",
        300: "#A2C7E3",
        400: "#8BB9DC",
        500: "#6EACDA", // Base color
        600: "#5A94C2",
        700: "#477CAC",
        800: "#336495",
        900: "#204D7E",
      },
      background: "#021526",
      cardBg: "#061e33",
      text: "#fff",
    },
  },
```

PreviousChanging TextNextBuilding the Project

Last updated 7 months ago