Additional themes

Are there some additional themes available for RT5, elevator-light is too white and pale?

How to change the font?

There is a dark mode too! If not you can try editing the theme using the theme editor tool Admin->Tools->Theme

You can make your own themes by creating a /opt/rt5/local/static/css directory and copying one of the base theme directories into there from /opt/rt5/share/static/css with a new directory name. The themes are just using CSS so you can tinker with that as normal. I’d copy the elevator-light theme as the basis as that has all the CSS in it (in multiple file imported from main.css).

Just want to make few tweaks to make current theme more readable.

So ended up adding custom css using Admin->Tools->Theme:

/* Black color in body */
.form-control, .form-control:focus {
    color: black;
}

/* Black color in form */
.form-control, .form-control:focus {
    color: black;
}

/* Light gray background in ticket info boxes */
[class*="ticket-info"] {
    background: #f5f5f5;
}

Font change to Arial:

/* Arial font */
:root {
  --font-family-sans-serif: "Arial", sans-serif;
  --font-family-monospace: "Arial", monospace;
}

body {
  font-family: "Arial", sans-serif;
}

pre,
code,
kbd,
samp {
  font-family: "Arial", monospace;
}

.tooltip {
  font-family: "Arial", sans-serif;
}

.popover {
  font-family: "Arial", sans-serif;
}

.text-monospace {
  font-family: "Arial", monospace;
}