Cores

Neutral colors

Light Neutral Colors

#FFFFFF--colorWhite
#FAFAFA--colorLightGray

Dark Neutral Colors

#2D2D2D--colorDarkGray
#000000--colorBlack

Primary / Secondary colors

Os temas disponibilizados possuem cores primárias e secundárias com nomenclatura padrão --colorPrimary e --colorSecondary.

hexa color primary --colorPrimary
hexa color secondary --colorSecondary

Text colors

As cores de texto devem atender às diretrizes de contraste de cores WCAG 2.0.
Os diagramas demostram como as cores de textos são usadas em conjunto com as cores de fundo primery, secondary e neutral.

Background Neutral Colors

#FFFFFF--colorWhite
#FAFAFA--colorLightGray

Text Color Applied on Background

--colorDarkGray

--colorBlack

Background Primary/Secondary Colors

#5C8D89--colorPrimary
#A7D7C5--colorSecondary

Text Color Applied on Background

--colorWhite

--colorBlack

Themes

#3BA4BF
#a4d2de
#A0D8B3
#E5F9DB
#5C8D89
#A7D7C5
#74B49B
#D3F6D1
#609966
#9DC08B
#8a9c5f
#D9F489
#D95858
#F7EDDB
#707070
#92817A
#7C96AB
#B7B7B7
#AA5656
#F1DBBF
#425F57
#749F82
#74B49B
#A7D7C5
#A4BC92
#DDFFBB

Feedback colors

Success

#659917
#CFF09F

Warning

#fc8c03
#fcf39a

Danger

#F44336
#fae5e3

Iconografia

Ícones associados à execução de atividades do sistema, tais como menu hamburger, fechar modais ou menu. https://fonts.google.com/icons

Símbolos específicos ligados à área da saúde: https://www.flaticon.com/

Para cores especiais, adicionar a classe com o nome da cor, como exemplos as classes colorBlack ou colorPrimary

menu close

Tipografia

Nosso propósito é disponibilizar o conteúdo de forma clara e amigável.

Para tanto foi selecionada uma fonte fácil leitura, harmônica e moderna por ser sans-serif.

Usamos a fonte Confortaa como fonte primária.

A Confortaa é uma fonte Google: https://fonts.google.com/specimen/Comfortaa

Componentes

Alerts

Success alert

Danger alert

Warning alert
      
  <div class="alert-success">
    <b>Success</b> alert
  </div>
  <div class="alert-danger">
    <b>Danger</b> alert
  </div>
  <div class="alert-warning">
    <b>Warning</b> alert
  </div>
      
    

Cards

Cards podem ser usados para agrupar dados correlacionados.
Cards devem ser usados com background --colorLightGray.

Lorem Ipsum

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.

      
  <div class="card">
  <h2>Lorem Ipsum</h2> 
  <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. 
  Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, 
  when an unknown printer took a galley of type and scrambled it to make a type specimen book.
  </p>
  </div>
      
    

Buttons

Botões começam com ".button-(type)"

        
  <button class="button-primary">primary</button>
  <button class="button-danger">danger</button>
  <button class="button-info">info</button>
        
    

Checkbox

      
  <div class="form-field">
  <input type="checkbox" checked
    id="checkbox1" name="checkbox1" </input>
  <label for="checkbox1">Pedido Médico</label>
  </div>

  <div class="form-field">
  <input type="checkbox"
    id="checkbox2" name="checkbox2" </input>
  <label for="checkbox2">Exames</label>
  </div>

      
    

Modals

      
  <button class="button-primary" onclick="openModal()">Open Modal</button>

  <div id="modal-shadow" class="modal-shadow" >
    <div class="modal-content">
      <div class="modal-header">
        <h2>Lorem Ipsum</h2> 
        <div class="close">
          <span class="material-symbols-outlined"  onclick="closeModal()">close</span>
        </div>
      </div>
      <div class="modal-body">
        <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. </p>
      </div>
    </div>
  </div>
      
    

Radio Buttom

      
  <div class="form-field">
  <label class="input-radio">
  <input type="radio" value="Sim" name="radio1" checked></input>
  <span class="checkradio"></span>Sim
  </label>

  <label class="input-radio">
  <input type="radio" value="Não" name="radio1"></input>
  <span class="checkradio"></span>Não
  </label>
  </div>
      
    

Select

      
  <div class="form-field">
  <label class="field-description">Convênio</label>
  <select class="input-field">
    <option disabled>--selecione--</option>
    <option>Opção A</option>
    <option>Opção B</option>
  </select>
  </div>
      
    

Switch

      
  <div class="switch">
    <label>
      <input type="checkbox" checked></input>
      <span class="lever"></span> Somente dias disponíveis
    </label>
  </div>
      
    

Text

      
  <div class="form-field">
  <label class="field-description">input type text</label>
  <input type="text" class="input-field">
  </div>
      
    

Form Layout

Formulário de Reembolso

Qual a conta cadastrada junto ao convênio?

A conta cadastrada deve ser de pessoa física do titular do plano.

    
  <div class="card">
  <h2>Lorem Ipsum</h2> 
  <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. 
  Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, 
  when an unknown printer took a galley of type and scrambled it to make a type specimen book.
  </p>
  </div>