Clearer font styles.

svn path=/trunk/netsurf/; revision=11032
This commit is contained in:
Michael Drake 2010-12-12 12:14:03 +00:00
parent e3073b6623
commit ff9bd6540c
1 changed files with 6 additions and 6 deletions

View File

@ -49,20 +49,20 @@
static plot_font_style_t plot_fstyle = {
.family = PLOT_FONT_FAMILY_SANS_SERIF,
.size = 10240,
.size = 10 * FONT_SIZE_SCALE, /* 10pt. */
.weight = 400,
.flags = FONTF_NONE,
.background = 0xFFFFFF,
.foreground = 0x000000
.background = 0xFFFFFF, /* white */
.foreground = 0x000000 /* black */
};
static plot_font_style_t plot_fstyle_selected = {
.family = PLOT_FONT_FAMILY_SANS_SERIF,
.size = 10240,
.size = 10 * FONT_SIZE_SCALE, /* 10pt. */
.weight = 400,
.flags = FONTF_NONE,
.background = 0x000000,
.foreground = 0xEEEEEE
.background = 0x000000, /* black */
.foreground = 0xEEEEEE /* nearly white */
};
struct node;