/*
 * This file contains the design configuration of the application.
 * 
 * Variables defined here can be used globally in the application.
 * Changes will affect the whole application.
 */

:root {
  /* Colors */
  --primary-color: #e84613;
  --secondary-color: #203361;
  --gradient-dark: #2f4858;
  --text-color: black;

  /* Font configuration */
  --font-family: "Roboto", sans-serif;
  --font-size-body: 16px;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-body);
  color: var(--text-color);
  /* ToDo: This is needed because delivery includes webedit.css which SHOULD NOT BE!
           Please remove this dependency, it will cause much more mayham down the line! */
  overflow: unset !important;
}

.searchterm {
  color: var(--primary-color);
}

.entry {
  color: var(--gradient-dark);
}
