mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
Header colored (#581)
This commit is contained in:
@@ -7,6 +7,15 @@ export interface Style {
|
||||
fontStrikethrough?: boolean|undefined;
|
||||
}
|
||||
|
||||
export interface HeaderStyle {
|
||||
headerTextColor?: string | undefined; // this can be string, undefined or an absent key.
|
||||
headerFillColor?: string | undefined;
|
||||
headerFontBold?: boolean | undefined;
|
||||
headerFontUnderline?: boolean | undefined;
|
||||
headerFontItalic?: boolean | undefined;
|
||||
headerFontStrikethrough?: boolean | undefined;
|
||||
}
|
||||
|
||||
export class CombinedStyle implements Style {
|
||||
public readonly textColor?: string;
|
||||
public readonly fillColor?: string;
|
||||
|
||||
Reference in New Issue
Block a user