VOOZH about

URL: https://www.geeksforgeeks.org/css/blaze-ui-input-colors/

⇱ Blaze UI Input Colors - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Blaze UI Input Colors

Last Updated : 23 Jul, 2025

Blaze UI is a free open source UI Toolkit that provides a great structure for building websites quickly with a scalable and maintainable foundation. All components in Blaze UI are developed mobile-first and rely solely on native browser features, not a separate library or framework. It helps us to create a scalable and responsive website fast and efficiently with a consistent style.

Blaze UI Input Colors is used to create the input fields with different colors. We have two color classes and one attribute as shown below.

Blaze UI Input Colors Classes and Attribute:

  • c-field--success: This class is used to create the success color input field.
  • c-field--error: This class is used to create the error color input field.
  • disabled: This attribute is used to create the disabled input field.

Syntax:

<input class="c-field Input-Colors-Class" 
 placeholder="..." type="text">

Example 1: The following code demonstrates the Blaze UI Input Colors.

Output:

👁 Image
Blaze UI Input Colors

Example 2: The following code demonstrates the Blaze UI Input Colors.

Output:

👁 Image
Blaze UI Input Colors

Reference: https://www.blazeui.com/components/inputs/

Comment