Better colors

Moderator: crythias

Post Reply
wiegandr
Znuny newbie
Posts: 32
Joined: 23 Jun 2016, 08:55
Znuny Version: OTRS5
Real Name: Ralf Wiegand
Company: TML Technologies

Better colors

Post by wiegandr »

Hello all - I have been using OTRS 5.x for quite sometime and it is really hard on your eyes after several hours. It doesn't matter if it is orange or light blue, your eyes will will stress. We have also users who require a higher contrast color setup. Is there a way to change the light orange/light blue to a dark blue or black?
Thank You for your help

Ralf Wiegand
Last edited by wiegandr on 09 Mar 2017, 15:06, edited 1 time in total.
RStraub
Znuny guru
Posts: 2210
Joined: 13 Mar 2014, 09:16
Znuny Version: 6.0.14
Real Name: Rolf Straub

Re: Better colors

Post by RStraub »

There absolutly is. You'd have to modify the css files. Best way to do so would be to create a custom skin.
Currently using: OTRS 6.0.14 -- MariaDB -- Ubuntu 16 LTS
wiegandr
Znuny newbie
Posts: 32
Joined: 23 Jun 2016, 08:55
Znuny Version: OTRS5
Real Name: Ralf Wiegand
Company: TML Technologies

Re: Better colors

Post by wiegandr »

Thank You for your response - Can you share a link on how to do so? Or any how-to? This would be greatly appriciated.
Thank You
Ralf Wiegand
root
Administrator
Posts: 3961
Joined: 18 Dec 2007, 12:23
Znuny Version: Znuny and Znuny LTS
Real Name: Roy Kaldung
Company: Znuny
Contact:

Re: Better colors

Post by root »

Znuny and Znuny LTS running on CentOS / RHEL / Debian / SLES / MySQL / PostgreSQL / Oracle / OpenLDAP / Active Directory / SSO

Use a test system - always.

Do you need professional services? Check out https://www.znuny.com/

Do you want to contribute or want to know where it goes ?
RStraub
Znuny guru
Posts: 2210
Joined: 13 Mar 2014, 09:16
Znuny Version: 6.0.14
Real Name: Rolf Straub

Re: Better colors

Post by RStraub »

Sure. Here's the link to the manual:
http://doc.otrs.com/doc/manual/develope ... id-1.3.5.6

You don't need to copy the whole css files, but only the parts which you want to change. For example if you want a new color in the header, you'd create this file:
~otrs/var/httpd/htdocs/skins/Agent/NameOfYourSkin/css/Core.Header.css

and write into it:

Code: Select all

#Header {
  background: -webkit-linear-gradient(#FFFFFF,#660000);
  background: -o-linear-gradient(#FFFFFF,#660000);
  background: -moz-linear-gradient(#FFFFFF,#660000);
  background: linear-gradient(#FFFFFF,#660000);
}

Currently using: OTRS 6.0.14 -- MariaDB -- Ubuntu 16 LTS
Post Reply