@extends('layouts/contentLayoutMaster') @section('title', 'Colors') @section('page-style') {{-- Page css files --}} @endsection @section('content') {{-- Background color start --}}

Default Colors

We have a series of colors that are used by default. They include:

  • Primary
  • Success
  • Danger
  • Warning
  • Info

For each color, we think has its functionality in the application as alerts of errors (danger), warnings to the user (warning), communications of approval (success), or main color of the application (primary).

primary
success
danger
warning
info
{{-- Background color end --}} {{-- Gradient color start --}}

Gradient Colors

We have make gradient color based on our default color:

  • bg-gradient-primary
  • bg-gradient-success
  • bg-gradient-danger
  • bg-gradient-warning
  • bg-gradient-info

For each color, we think has its functionality in the application as alerts of errors (danger), warnings to the user (warning), communications of approval (success), or main color of the application (primary).

primary gradient
success gradient
danger gradient
warning gradient
info gradient
{{-- Gradient color end --}} @endsection