Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Software > Sigil

Notices

Reply
 
Thread Tools Search this Thread
Old 12-08-2019, 07:55 PM   #1
BeckyEbook
Guru
BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.
 
BeckyEbook's Avatar
 
Posts: 704
Karma: 2180740
Join Date: Jan 2017
Location: Poland
Device: Misc
Suggestions before releasing version 1.0

Kevin suggested that I write a new post on this topic.

I have been observing Sigil's development for years. I run it almost every day. I like to adapt tools to my needs.
There are a few small things that may be worth changing before launching a milestone in the development of Sigil – version 1.0.
Write what you think about these suggestions under this post. If something seems pointless – just write. And if something is neutral or seems acceptable – write also.

All proposals are purely aesthetic and may be of low priority, but life is made of little things.

1. Question mark in dialog boxes

Since Sigil does not use QWhatsThis – I suggest to disable the question mark globally. Many of you will ask "what's going on?"
Well, the question mark is in the title bar in Windows in most windows that pop up in Sigil (eg About, Settings ...).

It's about that question mark:


Code:
#ifdef Q_OS_WIN32
QApplication::setAttribute(Qt::AA_DisableWindowContextHelpButton);
#endif
Why?
Find "Qt::AA_DisableWindowContextHelpButton" on page: https://doc.qt.io/qt-5/qt.html


2. Change link color

Standard link colors have been used for years: blue for the standard link, purple for the visited link and red for the active link. These colors can of course vary depending on the web browser and even the specific version of the browser.
Throughout the Sigil code, the link only appears three times (all in the About box), so I hope this is not a revolutionary suggestion.

But why?
The blue color of the link is very legible on a white background, but with darker themes this color does not look good because it is too blue.



The change is simple, just cover these three links with the SPAN tag with the appropriate blue color – I suggest:

Code:
<span style=\"text-decoration: underline; color:#039be5;\">…</span>

3. Optional turning off the border around the code view.

The gray frame around the main window is hardcoded and cannot be styled in any way by an external QSS file. Over the past year I have used Sigil without this frame and I don't miss it, but maybe in MacOS or Linux systems the frame matters.

The frame is defined in this way:

Code:
static const QString TAB_STYLE_SHEET = "#managerframe {border-top: 0px solid white;"
        "border-left: 1px solid gray;"
        "border-right: 1px solid gray;"
        "border-bottom: 1px solid gray;}";
It is easy to turn it off by commenting on the line that instructs you to turn on hair styling:
Code:
frame-> setStyleSheet (TAB_STYLE_SHEET);
The suggestion is to add a parameter with the example name SIGIL_DISABLE_BORDER_STYLING and then the main window would not be styled. Or – maybe – this frame is not so important. Then the interface is more like "flat" style.

Image: sigil-border.png
Image: sigil-dark-border-on.png
Image: sigil-dark-border-off.png


4. Default empty files – a layout more similar to that after mending

It's really a small thing.
Two extra spaces (in two places) and one new line.
Then the empty file before and after mending will be identical.

Separate change for epub2 and epub3.

Image: sigil-suggestion-4.png


5. Fix format case icon

IMHO the text icon is not cool.
When resizing icons on the toolbar, this icon is either too big or too small.

Image: sigil-format-case-icon.png


6. Non-standard semantics (other.) in tooltips

Epub2 files may have non-standard semantics (not in the main list) and then have the prefix "other." (e.g., other.footnotes).
Sigil does not display tooltips for such xhtml files.

Change in\src\Misc\GuideItems.cpp file:
Code:
     return rel.name;
to
Code:
     if (rel.name != "") {
         return rel.name;
     } else {
         return code;
     }
Attached Thumbnails
Click image for larger version

Name:	sigil-suggestion-1.png
Views:	553
Size:	5.0 KB
ID:	175465   Click image for larger version

Name:	sigil-suggestion-2.png
Views:	532
Size:	19.0 KB
ID:	175466   Click image for larger version

Name:	sigil-suggestion-4.png
Views:	178
Size:	35.5 KB
ID:	175467   Click image for larger version

Name:	sigil-border.png
Views:	172
Size:	26.6 KB
ID:	175468   Click image for larger version

Name:	sigil-dark-border-on.png
Views:	173
Size:	36.1 KB
ID:	175469   Click image for larger version

Name:	sigil-dark-border-off.png
Views:	165
Size:	35.8 KB
ID:	175470   Click image for larger version

Name:	sigil-format-case-icon.png
Views:	175
Size:	74.0 KB
ID:	175471  
BeckyEbook is offline   Reply With Quote
Old 12-08-2019, 08:24 PM   #2
DiapDealer
Grand Sorcerer
DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.
 
DiapDealer's Avatar
 
Posts: 27,587
Karma: 193191846
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
#1 is reasonable enough, but we'd need to remember to ifdef it conditionally. AA_DisableWindowContextHelpButton was only introduced in Qt5.10, and we try to ensure that Sigil will build and function with at least limited functionality back to Qt5.9.4 on Linux.

#2. I'm for anything that helps with moving Sigil toward better supporting a dark mode (however it's accomplished).

#3. The frame is quite important. It's the central widget. It's visibility or appearance, however, is not vital. I've no real feelings (good or bad) on this particular suggestion.

#4 Again, no strong feelings one way or another.

#5 HOW DARE YOU! I slaved for minutes creating THAT icon! But seriously... I hate icon work, I'd entertain reasonable replacement suggestions (as long as all three necessary sizes were supplied). To be honest, I'm not sure if I did that one or not (or if it's even an icon). I think I did the h* icon.

#6 I can live with or without this change.

Last edited by DiapDealer; 12-08-2019 at 08:43 PM.
DiapDealer is offline   Reply With Quote
Advert
Old 12-08-2019, 10:02 PM   #3
KevinH
Sigil Developer
KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.KevinH ought to be getting tired of karma fortunes by now.
 
Posts: 7,714
Karma: 5444398
Join Date: Nov 2009
Device: many
I do not have strong feelings against any of these.

But it would certainly make things easier if we had a set of separate pull request for each the change you proposed so we can merge the ones people have no trouble with more easily. After everyone who wants to speaks up.

Thanks,

KevinH
KevinH is offline   Reply With Quote
Old 12-09-2019, 12:12 AM   #4
odamizu
just an egg
odamizu ought to be getting tired of karma fortunes by now.odamizu ought to be getting tired of karma fortunes by now.odamizu ought to be getting tired of karma fortunes by now.odamizu ought to be getting tired of karma fortunes by now.odamizu ought to be getting tired of karma fortunes by now.odamizu ought to be getting tired of karma fortunes by now.odamizu ought to be getting tired of karma fortunes by now.odamizu ought to be getting tired of karma fortunes by now.odamizu ought to be getting tired of karma fortunes by now.odamizu ought to be getting tired of karma fortunes by now.odamizu ought to be getting tired of karma fortunes by now.
 
odamizu's Avatar
 
Posts: 1,590
Karma: 4329454
Join Date: Mar 2015
Device: Kindle, iOS
#3 - Just so I'm clear, this would be an optional, user-customizable thing? If so, I always like the idea of user-customizable options, though I'm not sure I would make use of the option as the default has always been fine for me.

#5 - I have never felt this icon was too big or too small and am therefore a little leery of changing it, but I don't feel strongly about this.

Everything else I don't have much opinion for or against.
odamizu is offline   Reply With Quote
Old 12-09-2019, 12:42 AM   #5
Tex2002ans
Wizard
Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.
 
Posts: 2,297
Karma: 12126329
Join Date: Jul 2012
Device: Kobo Forma, Nook
Quote:
Originally Posted by BeckyEbook View Post
1. Question mark in dialog boxes
I just noticed the ? a few days ago. I clicked to see what it actually did, and it looked like it did absolutely nothing.

Just thought it was one of those things that was always there and I just never noticed.

Quote:
Originally Posted by BeckyEbook View Post
2. Change link color
Against this. That specific color (#039BE5) looks quite hard to read on white background, and even inserting it into:

https://webaim.org/resources/contrastchecker/

gives a Contrast Ratio 3.07:1, and fails WCAG on nearly all background levels.

I assume the vast majority has white background and leaves the colors on defaults. If someone goes out of their way to create a darker theme, is this link color not user-adjustable?

Quote:
Originally Posted by BeckyEbook View Post
3. Optional turning off the border around the code view.
Either seems fine to me.

3 more pixels of screen real estate seems like a plus!

Quote:
Originally Posted by BeckyEbook View Post
4. Default empty files – a layout more similar to that after mending
I was also thinking this exact same thing. First thing I always do when I create a new file is Prettify it.

Quote:
Originally Posted by BeckyEbook View Post
5. Fix format case icon
Consistency is probably good.

Quote:
Originally Posted by BeckyEbook View Post
6. Non-standard semantics (other.) in tooltips
Seems like the change wouldn't hurt.

But do you have an example of a book using this in the wild?

Last edited by Tex2002ans; 12-09-2019 at 12:57 AM.
Tex2002ans is offline   Reply With Quote
Advert
Old 12-09-2019, 02:26 AM   #6
najgori
Klak
najgori gives new meaning to the word 'superlative.'najgori gives new meaning to the word 'superlative.'najgori gives new meaning to the word 'superlative.'najgori gives new meaning to the word 'superlative.'najgori gives new meaning to the word 'superlative.'najgori gives new meaning to the word 'superlative.'najgori gives new meaning to the word 'superlative.'najgori gives new meaning to the word 'superlative.'najgori gives new meaning to the word 'superlative.'najgori gives new meaning to the word 'superlative.'najgori gives new meaning to the word 'superlative.'
 
najgori's Avatar
 
Posts: 174
Karma: 150374
Join Date: Sep 2011
Location: Belgrade, Serbia
Device: many
After regex search and replace in Calibre you can compare before and after code in 2 windows side by side.
It would be cool to add this to Sigil.
najgori is offline   Reply With Quote
Old 12-09-2019, 04:58 AM   #7
RbnJrg
Wizard
RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.
 
Posts: 1,566
Karma: 7043711
Join Date: Mar 2013
Location: Rosario - Santa Fe - Argentina
Device: Kindle 4 NT
Maybe you can implement something like this:

RbnJrg is offline   Reply With Quote
Old 12-09-2019, 05:15 AM   #8
The_book
Zealot
The_book began at the beginning.
 
Posts: 100
Karma: 10
Join Date: Aug 2019
Device: none
Quote:
Originally Posted by najgori View Post
After regex search and replace in Calibre you can compare before and after code in 2 windows side by side.
It would be cool to add this to Sigil.
I want to know will Sigil add regex function replacement like Calibre? Or will some design a plugin like this?
The_book is offline   Reply With Quote
Old 12-09-2019, 05:19 AM   #9
DiapDealer
Grand Sorcerer
DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.
 
DiapDealer's Avatar
 
Posts: 27,587
Karma: 193191846
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
Lets not turn this thread into a general wishlist, please. Everyone is free to create their own thread, but this one should be about @Becky's suggestions.
DiapDealer is offline   Reply With Quote
Old 12-09-2019, 10:11 AM   #10
DiapDealer
Grand Sorcerer
DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.
 
DiapDealer's Avatar
 
Posts: 27,587
Karma: 193191846
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
Quote:
Originally Posted by Tex2002ans View Post
Quote:
Originally Posted by BeckyEbook View Post
2. Change link color
Against this. That specific color (#039BE5) looks quite hard to read on white background, and even inserting it into:

https://webaim.org/resources/contrastchecker/

gives a Contrast Ratio 3.07:1, and fails WCAG on nearly all background levels.
Keep in mind that @BeckyEbook's request is for three specific (and unchanging) links in the Sigil About box (only two of them are actually working links in fact). I just wanted to be certain that everyone understands that this is not a request to make a blanket change to the color of all links rendered by Sigil.

We will try to look for colors that will strike a reasonable compromise RE contrast in Light and Dark Themes with regard to accessibility standards. A triple-A contrast-rating for both modes from WCAG is not very likely to happen, though.

Dark Theme compromises RE Sigil's default colors/icons are going to eventually happen across the board, though; just to be clear. Many OSes already offer High Contrast themes (Windows 10 1909 included) for those who have accessibility needs.
DiapDealer is offline   Reply With Quote
Old 12-09-2019, 11:18 AM   #11
BeckyEbook
Guru
BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.
 
BeckyEbook's Avatar
 
Posts: 704
Karma: 2180740
Join Date: Jan 2017
Location: Poland
Device: Misc
I will try to reply to comments later, I need to think about it.

I still have an additional idea.

7. Colors in Validation Results

Image: sigil-validation-results-colors.png

System variables are cool, but an even better section would be in the sigil_tweaks.ini file (if the file does not exist – default settings are used).

Code:
[tweaks]
border=false
link_color=#3333FF
validation=foreground
info_color=#72A5D4
warning_color=#D4A572
error_color=#DE5E5E
border (#3) – true/false
link_color (#2) – do not like blue or is illegible? enter your color for links
validation (#7) – foreground/background. Whether the color in the Validation Results window is to be set for text or for the background
info_color, warning_color, error_color – own colors in Validation Results
Attached Thumbnails
Click image for larger version

Name:	sigil-validation-results-colors.png
Views:	139
Size:	22.9 KB
ID:	175487  
BeckyEbook is offline   Reply With Quote
Old 12-09-2019, 11:31 AM   #12
DiapDealer
Grand Sorcerer
DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.
 
DiapDealer's Avatar
 
Posts: 27,587
Karma: 193191846
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
I'd rather not come up with a lot of individual tweaks to address dark theme aspects of various sigil widgets. If at all possible, I'd like to use QPalette generic "darkColor", "lightColor", "disabledColor" for the various ui elements that can then be styled or themed appropriately. One ini tweak file for the validation widget alone seems a bit messy to me.
DiapDealer is offline   Reply With Quote
Old 12-09-2019, 12:03 PM   #13
BeckyEbook
Guru
BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.
 
BeckyEbook's Avatar
 
Posts: 704
Karma: 2180740
Join Date: Jan 2017
Location: Poland
Device: Misc
If only an optional solution is possible – it will definitely be better than coming up with workarounds/tweaks.

Dark theme can be thought of after release 1.0.
I wanted to gather in one place those elements that are an obstacle. I hope that users can have their opinion and then developers will have an easier task in the future.
Sometimes something bothers for years, but when a new option/functionality appears, he thinks "How could I live without it?"

Just the ini file with tweaks would cover all aspects that go beyond the default (light) theme and hardcoded elements.
Please note that border (described in the first post) and link_color (these blue links in the About window) are just an attempt to collect changes in one place.
The list is open and would allow you to add other "tweaks" in the future.

And if one day it is possible without tweaks – even better.
BeckyEbook is offline   Reply With Quote
Old 12-09-2019, 06:39 PM   #14
BeckyEbook
Guru
BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.BeckyEbook ought to be getting tired of karma fortunes by now.
 
BeckyEbook's Avatar
 
Posts: 704
Karma: 2180740
Join Date: Jan 2017
Location: Poland
Device: Misc
Quote:
Originally Posted by KevinH View Post
But it would certainly make things easier if we had a set of separate pull request for each the change you proposed so we can merge the ones people have no trouble with more easily. After everyone who wants to speaks up.
I will try to prepare a separate pull request for all proposals.

Quote:
Originally Posted by DiapDealer View Post
#1 is reasonable enough, but we'd need to remember to ifdef it conditionally. AA_DisableWindowContextHelpButton was only introduced in Qt5.10, and we try to ensure that Sigil will build and function with at least limited functionality back to Qt5.9.4 on Linux.
Sure.

Quote:
Originally Posted by DiapDealer View Post
#5 HOW DARE YOU! I slaved for minutes creating THAT icon! But seriously... I hate icon work, I'd entertain reasonable replacement suggestions (as long as all three necessary sizes were supplied). To be honest, I'm not sure if I did that one or not (or if it's even an icon). I think I did the h* icon.
Even now, h* doesn't work perfectly (depending on what state Sigil was closed in). If it was a 16px icon – it incorrectly switches to larger icon sizes when moving the slider. If it was a 22px or 48px icon – it should be fine.

Quote:
Originally Posted by odamizu View Post
#3 - Just so I'm clear, this would be an optional, user-customizable thing? If so, I always like the idea of user-customizable options, though I'm not sure I would make use of the option as the default has always been fine for me.
Sure. The frame stays by default + optional borderlessness.

Quote:
Originally Posted by Tex2002ans View Post
If someone goes out of their way to create a darker theme, is this link color not user-adjustable?
Qt unfortunately doesn't allow links to be styled
I have thoroughly analyzed the guidelines regarding contrast and visibility for people with sight diseases. Since there is no perfect solution (and perfect blue for links), I have to accept that adjustment for the disabled is more important than subjective aesthetics.
On the other hand, people with impaired eyesight would probably prefer not to use a dark theme, but a high contrast theme. Then the links are often yellow on a black background or similarly highly contrasting.

Quote:
Originally Posted by Tex2002ans View Post
#6
Seems like the change wouldn't hurt.
But do you have an example of a book using this in the wild?
Of course.
I have 769 e-books bought from Polish bookstores. 83 of them (10.8%) was used semantics of "other." in the guide section.
BeckyEbook is offline   Reply With Quote
Old 12-09-2019, 08:12 PM   #15
BetterRed
null operator (he/him)
BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.
 
Posts: 20,650
Karma: 26966376
Join Date: Mar 2012
Location: Sydney Australia
Device: none
Quote:
Originally Posted by BeckyEbook View Post
On the other hand, people with impaired eyesight would probably prefer not to use a dark theme, but a high contrast theme. Then the links are often yellow on a black background or similarly highly contrasting.
Not sure that's always true, I have poor eyesight and I really dislike high contrast themes. When available I always choose a dark theme (but not bright white on shiny black) - light silver on charcoal grey is my preference, a'la :

Click image for larger version

Name:	attachment.png
Views:	146
Size:	491.4 KB
ID:	175502

BTW that's an upcoming calibre enhancement, as I understand the change, it's what Windows users can (will ?) get if they have selected Dark in Windows->Settings->Personalisation->Colours.

BR

Last edited by BetterRed; 12-09-2019 at 08:17 PM. Reason: Clarification
BetterRed is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Feature Suggestions for Future Version Authorspeak Sigil 12 03-13-2014 12:21 PM
Releasing a chapter at a time? jhempel24 Writers' Corner 24 03-15-2013 08:11 AM
Releasing updated eBooks jhempel24 General Discussions 26 02-20-2013 07:26 AM
PRS 650 releasing on 09/16 sachinwalia Sony Reader 6 09-09-2010 10:45 AM
Releasing Out of Print Books? KindleKid Reading Recommendations 6 12-05-2008 03:24 PM


All times are GMT -4. The time now is 07:36 PM.


MobileRead.com is a privately owned, operated and funded community.