logo polydile dile-components

dile-button

Web Component to create a customizable button.

Installation

npm i @dile/ui

Usage

Import the dile-button component.

import '@dile/ui/components/button/button.js';

Use the component.

<dile-button>Button Label</dile-button>

Properties

CSS Custom Properties

You can customize it using CSS Custom Properties.

Custom property Description Default
--dile-button-padding-y Vertical padding 0.5rem
--dile-button-padding-x Horizontal padding 0.8rem
--dile-button-border-radius Button border radius 2rem
--dile-button-border-width Button border width 3px
--dile-button-border-color Button border color #07193b
--dile-button-background-color Background color #7BB93D
--dile-button-text-color Text color #fff
--dile-button-font-size Font size 1rem
--dile-button-font-weight Font weight bold
--dile-button-hover-background-color Hover background color #f3f3ae
--dile-button-hover-text-color Hover text color #303030
--dile-button-hover-border-color Hover border color #666666
--dile-button-ring-color Ring color on focus state #12c9e9
--dile-button-ring-offset-width Ring width on focus state 3px
--dile-button-disabled-background-color Disabled background color #b1ecf7
--dile-button-disabled-border-color Disabled border color #bbb
--dile-button-disabled-text-color Disabled text color #999
--dile-button-letter-spacing Text letter spacing 0

dile-button demos

Regular button

Click here!
<dile-button>Click here!</dile-button>

Styled button

Click here!
<style>
  .styled {
    --dile-button-border-color: #666;
    --dile-button-hover-border-color: #ff910f;
    --dile-button-background-color: #491449;
    --dile-button-hover-background-color: #f3c6f3;
    --dile-button-text-color:  #fff; 
    --dile-button-hover-text-color:  #000; 
    --dile-button-font-weight: bold;
    --dile-button-ring-color: #cc5099;
    --dile-button-ring-offset-width: 2px;
    --dile-button-border-radius: 4px;
    --dile-button-text-transform: uppercase;
  }
</style>
<dile-button class="styled">Click here!</dile-button>

Disabled button

Disabled button
  <dile-button name="disabeldbutton" disabled id="disabeldbutton">Disabled button</dile-button>