Browse Source

Creating the config.less file that contains color variables

master
bianca-maria 3 years ago
parent
commit
cf7ac32e0a
2 changed files with 19 additions and 0 deletions
  1. +1
    -0
      styles/base.less
  2. +18
    -0
      styles/config.less

+ 1
- 0
styles/base.less View File

@ -1,4 +1,5 @@
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import "./config.less";
html {
body {


+ 18
- 0
styles/config.less View File

@ -0,0 +1,18 @@
//colors
@bgColorBody: #e6e6e6;
@bgColorHeader:#EAD945;
@bgColorFooter: chocolate;
@bgColorTable:#edce73;
@colorLabelCheck:red;
@bgColorInput:whitesmoke;
@bgColorButton:white;
//text-fonts
@colorFooterP:#ffd045;
@colorFooterSp:#ffde7c;
//styles-border
@widthBorder: 1px;
@colorBorder:#007bff5e;
@defaultBorder: @widthBorder solid @colorBorder;

Loading…
Cancel
Save