about this forum..
about this forum..
I didn't see any topic so I'm posting it here. The only thing that drives me crazy is the poor contrast between the forecolor and backcolor of any posted code. Sometimes I have to highlight the codebox to read it. Can I change my colors in this forum?
-
- Competition winner
- Posts: 1123
- Joined: Sun Jun 10, 2007 11:14 pm
I think he's talking about the codebox. The green on whatever color the background is Can't say I've ever had problems with it
Code: Select all
like this
Code: Select all
TESTING
Sometimes I wonder if I have slight color-'tone' deafness. Single lines are fine, when I'm reading through a dump it's a little difficult to discern the lines.. like this can confuse me. Tell me you don't paste this into an editor to be able to read the lines carefully when debugging.
Maybe my monitor resolution is too big/font too small which may be driving me crazy too if I weren't already there
[/code]
Maybe my monitor resolution is too big/font too small which may be driving me crazy too if I weren't already there
Code: Select all
g++ -I../../include -I/usr/X11R6/include -I/opt/irrlicht/include -O3 -ffast-math -Os -fomit-frame-pointer main.cpp -o main -L/usr/X11R6/lib -L../../irrlicht/lib/Linux -L/opt/irrlicht/lib/Linux -lIrrlicht -lGL -lGLU -lXxf86vm -lXext -lX11
main.cpp: In member function ‘int GDR::changeresolution(irr::IrrlichtDevice*, int, int)’:
main.cpp:55: error: invalid initialization of reference of type ‘const irr::core::dimension2d<unsigned int>&’ from expression of type ‘irr::core::dimension2d<int>’
/opt/irrlicht/include/irrlicht.h:322: error: in passing argument 2 of ‘irr::IrrlichtDevice* irr::createDevice(irr::video::E_DRIVER_TYPE, const irr::core::dimension2d<unsigned int>&, irr::u32, bool, bool, bool, irr::IEventReceiver*)’
main.cpp: In member function ‘int GDR::restore(irr::IrrlichtDevice*)’:
main.cpp:59: error: invalid initialization of reference of type ‘const irr::core::dimension2d<unsigned int>&’ from expression of type ‘irr::core::dimension2d<int>’
/opt/irrlicht/include/irrlicht.h:322: error: in passing argument 2 of ‘irr::IrrlichtDevice* irr::createDevice(irr::video::E_DRIVER_TYPE, const irr::core::dimension2d<unsigned int>&, irr::u32, bool, bool, bool, irr::IEventReceiver*)’
main.cpp: In member function ‘virtual bool MyEventReceiver::OnEvent(const irr::SEvent&)’:
main.cpp:103: error: invalid initialization of reference of type ‘const irr::core::dimension2d<unsigned int>&’ from expression of type ‘irr::core::dimension2d<int>’
/opt/irrlicht/include/irrlicht.h:322: error: in passing argument 2 of ‘irr::IrrlichtDevice* irr::createDevice(irr::video::E_DRIVER_TYPE, const irr::core::dimension2d<unsigned int>&, irr::u32, bool, bool, bool, irr::IEventReceiver*)’
main.cpp: In member function ‘int LX::LXScreen(int, int)’:
main.cpp:143: error: invalid initialization of reference of type ‘const irr::core::dimension2d<unsigned int>&’ from expression of type ‘irr::core::dimension2d<int>’
/opt/irrlicht/include/irrlicht.h:322: error: in passing argument 2 of ‘irr::IrrlichtDevice* irr::createDevice(irr::video::E_DRIVER_TYPE, const irr::core::dimension2d<unsigned int>&, irr::u32, bool, bool, bool, irr::IEventReceiver*)’
make: *** [all_linux] Error 1
I'm willing to bet you do. It's not that uncommon. I believe windows has a high contrast mode that might help you a bit. If someone were to change the color of the codebox I'm sure that would make things easier to read for everyone. (perhaps blue instead of green?)Sometimes I wonder if I have slight color-'tone' deafness.
multum in parvo
-
- Posts: 1186
- Joined: Fri Dec 29, 2006 12:04 am
Most browsers allow to override the CSS stylesheets. Just use a custom one when browsing the Irrlicht forums.
The CSS for the code box would look like this:
or similar.
Opera provides special accessibility stylesheets.
http://www.opera.com/docs/usercss/
The CSS for the code box would look like this:
Code: Select all
td.code { color: blue !important; }
Opera provides special accessibility stylesheets.
http://www.opera.com/docs/usercss/
"Whoops..."