
  .ea-color-palettes {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  .ea-color-palettes .ea-colors {
    height: 100px;
    display: flex;
    flex-direction: row;
  }

  .ea-color-palettes  .ea-colors > * {
    cursor: crosshair;
    flex-grow: 1;
    transition: 0.5s ease;
  }
 .ea-color-palettes  .ea-colors > *:hover {
    flex-grow: 2;
  }

 .ea-color-palettes  .ea-color-details {
    padding: 6px 10px;
  }
 .ea-color-palettes  .ea-color-details .ea-color-name {
    font-weight: bold;
    text-align: center;
  }
  .ea-bg-color {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: 0.5s ease;
    font-weight: 500;
  }
  .copied-text,
  .ea-color-value {
    display: none;
  }
  .ea-bg-color:hover .ea-color-value {
    display: block !important;
  }
  .copied-text {
    position: absolute;
    top: 5px;
    right: 2px;
    padding: 0px 4px;
    transition: 0.5s ease;
  }
 
  
