Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 1.16 KB

themes.md

File metadata and controls

34 lines (22 loc) · 1.16 KB

Themes

It is possible to customize the look and feel of Bitcart UI by overriding some CSS variables.

Currently it is supported for store POS only.

A list of possible css variables: https://github.com/bitcart/bitcart-store/blob/master/assets/bulma-generated/generated-bulma-vars.sass

Guide to customizing the theme:

  1. Create a css file changing some theme variables

{% code title="theme.css" %}

:root {
  --brand-color: #162d50;
  --primary: var(--brand-color) !important;
  --success: var(--brand-color) !important;
  --link: var(--brand-color) !important;
}

{% endcode %}

  1. Upload theme file to file storage of your instance

  1. Copy download URL and use it in store theme URL setting in stores page

  1. Enjoy updated theme colors!

New colors applied