/**
@licence
    Copyright (c) 2020 Alan Chandler, all rights reserved

    This file is part of AKCMoney.

    AKCMoney is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    AKCMoney is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with AKCMoney.  If not, see <http://www.gnu.org/licenses/>.
*/

:root {
  --color: white;
  --background-color: rgb(5,5,5);
  --button-color: navy;
  --button-text-color: white;
  --dialog-color: white;
  --dialog-text-color: rgb(5,5,5);
  --heading-text-color: steelblue;
  --table-text-color: black;
  --table-heading-background: khaki;
  --panel-background-color: transparent;
  --panel-border-color:navy;
  --input-border-color:navy;
  --table-panel-background: gainsboro;
  --table-odd-color: white;
  --table-even-color:aliceblue;
  --form-background-color: khaki;
  --form-text-color: rgb(40,40,40);
  --currency-designator-color: crimson;
  --currency-difference-color: lightgreen;
  --shadow-color: rgba(255,255,255,0.8);
  --cleared-transaction: paleturquoise;
  --selected-for-clear:royalblue;
  --selected-for-unclear: darkgreen;
  --old-transaction: darkkhaki;
  --repeating-transaction: yellow;
  --transaction-form-background: khaki;
  --tooltip-color: khaki;
  --tooltip-text-color: black;
  --shadow-color: rgba(255,255,255,0.5);
  --menu-hover-color: steelblue;
  --menu-shadow-color: rgba(0,0,0,0.5);
  --menu-text-color: rgb(5,5,5);
  --drag-over-color: blue;
  --error-color: red;
  --input-error-color: lightpink;
  --waiting-color:orange;
  --fieldset-background-color: white;

  --home-icon-color: blue;
  --accounts-icon-color: red;
  --domains-icon-color: limegreen;
  --profile-icon-color: rebeccapurple;
  --sort-icon-color:orange;
  --logoff-icon-color: brown;
  --admin-icon-color: fuchsia;
  --currency-icon-color: steelblue;
  --codes-icon-color: burlywood;
  --users-icon-color:darkorange;
  --radio-button-color: navy;
  --csv-icon-color: skyblue;
  --pdf-icon-color: darkred;
  --more-icon-color: darkslategrey;
  --asset-value-color: red;


  --add-icon-color: limegreen;
  --delete-icon-color: red;
  --balance-icon-color: orange;
  --move-icon-color: royalblue;
  --switch-icon-color:skyblue;
  --save-icon-color: black;
  --set-icon-color: darkgreen;
  --undo-icon-color: burlywood;
  --archived-icon-color: darkblue;
  --unarchived-icon-color: lightblue;
  --reset-icon-color: orange;


  --menu-separator-color: grey;
 


  --name-input-length: 120px;
  --amount-width: 70px;
  --pw-input-length: 120px; 
  --year-selector-width: 60px;
  --max-page-width: 1000px;
  --currency-selector-width: 60px;
  --codetype-selector-width: 160px;
  --domain-selector-width:100px;
}
  
body {
  color: var(--color);
  background-color: var(--background-color);
  font-family: Arial, Helvetica, sans-serif;
  font-size:12px;
  --icon-size: 20px;
}
