diff --git a/styles/README.md b/styles/README.md index 1c87889..6a67afd 100644 --- a/styles/README.md +++ b/styles/README.md @@ -1,23 +1,42 @@ # Gold Style Reference -## document +## Block Elements + +Block elements contain other elements and are rendered around them. All block +elements support the following style settings: + +| Attribute | Value | Description | +| ---------------- | ------ | -------------------------------------------------- | +| prefix | string | Printed before the block's first element | +| suffix | string | Printed after the block's last element | +| styled_prefix | string | Printed before the block's first element | +| styled_suffix | string | Printed after the block's last element | +| indent | number | Specifies the indentation of the block | +| margin | number | Specifies the margin around the block | +| color | color | Defines the default text color for the block | +| background_color | color | Defines the default background color for the block | + +Elements inside a block inherit the block's following style settings: + +| Attribute | Value | Description | +| ---------------- | ----- | -------------------------------------------------- | +| color | color | Defines the default text color for the block | +| background_color | color | Defines the default background color for the block | +| bold | bool | Increases text intensity | +| faint | bool | Decreases text intensity | +| italic | bool | Prints the text in italic | +| crossed_out | bool | Enables strikethrough as text decoration | +| underline | bool | Enables underline as text decoration | +| overlined | bool | Enables overline as text decoration | +| blink | bool | Enables blinking text | +| conceal | bool | Conceals / hides the text | +| inverse | bool | Swaps fore- & background colors | + +### document The `document` element represents the markdown's body. -### Attributes - -| Attribute | Value | Description | -| ---------------- | ------ | ----------------------------------------------------- | -| prefix | string | Printed before the first element during rendering | -| suffix | string | Printed after the last element during rendering | -| styled_prefix | string | Printed before the first element during rendering | -| styled_suffix | string | Printed after the last element during rendering | -| indent | number | Specifies the indentation of the document | -| margin | number | Specifies the margin around the document | -| color | color | Defines the default text color for the document | -| background_color | color | Defines the default background color for the document | - -### Example +#### Example Style: @@ -30,24 +49,11 @@ Style: } ``` -## paragraph +### paragraph The `paragraph` element represents a paragraph in the document. -### Attributes - -| Attribute | Value | Description | -| ---------------- | ------ | --------------------------------------------------- | -| prefix | string | Printed before the first element in a paragraph | -| suffix | string | Printed after the last element in a paragraph | -| styled_prefix | string | Printed before the first element in a paragraph | -| styled_suffix | string | Printed after the last element in a paragraph | -| indent | number | Specifies the indentation of paragraphs | -| margin | number | Specifies the margin around paragraphs | -| color | color | Defines the default text color for paragraphs | -| background_color | color | Defines the default background color for paragraphs | - -### Example +#### Example Style: @@ -59,39 +65,17 @@ Style: } ``` -## heading +### heading The `heading` element represents a heading. -## h1 - h6 +### h1 - h6 The `h1` to `h6` elements represent headings. `h1` defines the most important heading, `h6` the least important heading. Undefined attributes are inherited from the `heading` element. -### Attributes - -| Attribute | Value | Description | -| ---------------- | ------ | ------------------------------------------------- | -| prefix | string | Printed before a heading | -| suffix | string | Printed after a heading | -| styled_prefix | string | Printed before a heading | -| styled_suffix | string | Printed after a heading | -| indent | number | Specifies the indentation of headings | -| margin | number | Specifies the margin around headings | -| color | color | Defines the default text color for headings | -| background_color | color | Defines the default background color for headings | -| bold | bool | Increases text intensity | -| faint | bool | Decreases text intensity | -| italic | bool | Prints the text in italic | -| crossed_out | bool | Enables strikethrough as text decoration | -| underline | bool | Enables underline as text decoration | -| overlined | bool | Enables overline as text decoration | -| blink | bool | Enables blinking text | -| conceal | bool | Conceals / hides the text | -| inverse | bool | Swaps fore- & background colors | - -### Example +#### Example Markdown: @@ -131,30 +115,16 @@ Output: ![Heading Example](https://github.com/charmbracelet/gold/raw/master/styles/examples/heading.png) -## block_quote +### block_quote The `block_quote` element represents a quote. -### Attributes - -| Attribute | Value | Description | -| ---------------- | ------ | ----------------------------------------------- | -| prefix | string | Printed before a quote | -| suffix | string | Printed after a quote | -| styled_prefix | string | Printed before a quote | -| styled_suffix | string | Printed after a quote | -| indent | number | Specifies the indentation of quotes | -| margin | number | Specifies the margin around quotes | -| color | color | Defines the default text color for quotes | -| background_color | color | Defines the default background color for quotes | - -### Example +#### Example Style: ``` "block_quote": { - "margin": 4, "color": "200" } ``` @@ -163,439 +133,42 @@ Output: ![Block Quote Example](https://github.com/charmbracelet/gold/raw/master/styles/examples/block_quote.png) -## text - -The `text` element represents a block of text. - -### Attributes - -| Attribute | Value | Description | -| ---------------- | ------ | ----------------------------------------------------- | -| prefix | string | Printed before a text gets printed | -| suffix | string | Printed after a text got printed | -| styled_prefix | string | Printed before a text gets printed | -| styled_suffix | string | Printed after a text got printed | -| color | color | Defines the default text color for the document | -| background_color | color | Defines the default background color for the document | -| bold | bool | Increases text intensity | -| faint | bool | Decreases text intensity | -| italic | bool | Prints the text in italic | -| crossed_out | bool | Enables strikethrough as text decoration | -| underline | bool | Enables underline as text decoration | -| overlined | bool | Enables overline as text decoration | -| blink | bool | Enables blinking text | -| conceal | bool | Conceals / hides the text | -| inverse | bool | Swaps fore- & background colors | - -### Example - -Style: - -``` -"text": { - "bold": true, - "color": "15", - "background_color": "57" -} -``` - -## list +### list The `list` element represents a list in the document. -### Attributes +| Attribute | Value | Description | +| ------------ | ------ | ------------------------------------------ | +| level_indent | number | Specifies the indentation for nested lists | -| Attribute | Value | Description | -| ---------------- | ------ | ---------------------------------------------- | -| prefix | string | Printed before a list | -| suffix | string | Printed after a list | -| styled_prefix | string | Printed before a list | -| styled_suffix | string | Printed after a list | -| indent | number | Specifies the indentation of lists | -| margin | number | Specifies the margin around lists | -| color | color | Defines the default text color for lists | -| background_color | color | Defines the default background color for lists | -| level_indent | number | Specifies the indentation for nested lists | - -### Example - -Markdown: - -``` -- First Item - - Nested List Item -- Second Item -``` +#### Example Style: ``` "list": { - "margin": 4, "color": "15", "background_color": "52", "level_indent": 4 } ``` -## item - -The `item` element represents an item in lists. - -### Attributes - -| Attribute | Value | Description | -| ---------------- | ------ | ---------------------------------------------- | -| prefix | string | Printed before an item | -| suffix | string | Printed after an item | -| styled_prefix | string | Printed before an item | -| styled_suffix | string | Printed after an item | -| color | color | Defines the default text color for items | -| background_color | color | Defines the default background color for items | -| bold | bool | Increases text intensity | -| faint | bool | Decreases text intensity | -| italic | bool | Prints the text in italic | -| crossed_out | bool | Enables strikethrough as text decoration | -| underline | bool | Enables underline as text decoration | -| overlined | bool | Enables overline as text decoration | -| blink | bool | Enables blinking text | -| conceal | bool | Conceals / hides the text | -| inverse | bool | Swaps fore- & background colors | - -### Example - -Style: - -``` -"item": { - "prefix": "• " -} -``` - -Output: - -![List Example](https://github.com/charmbracelet/gold/raw/master/styles/examples/list.png) - -## enumeration - -The `enumeration` element represents an item in ordered lists. - -### Attributes - -| Attribute | Value | Description | -| ---------------- | ------ | ---------------------------------------------- | -| prefix | string | Printed before an item | -| suffix | string | Printed after an item | -| styled_prefix | string | Printed before an item | -| styled_suffix | string | Printed after an item | -| color | color | Defines the default text color for items | -| background_color | color | Defines the default background color for items | -| bold | bool | Increases text intensity | -| faint | bool | Decreases text intensity | -| italic | bool | Prints the text in italic | -| crossed_out | bool | Enables strikethrough as text decoration | -| underline | bool | Enables underline as text decoration | -| overlined | bool | Enables overline as text decoration | -| blink | bool | Enables blinking text | -| conceal | bool | Conceals / hides the text | -| inverse | bool | Swaps fore- & background colors | - -### Example - -Markdown: - -``` -1. First Item -2. Second Item -``` - -Style: - -``` -"enumeration": { - "prefix": ". " -} -``` - -Output: - -![Enumeration Example](https://github.com/charmbracelet/gold/raw/master/styles/examples/enumeration.png) - -## task - -The `task` element represents a task item. - -### Attributes - -| Attribute | Value | Description | -| ---------------- | ------ | ---------------------------------------------- | -| prefix | string | Printed before an item | -| suffix | string | Printed after an item | -| styled_prefix | string | Printed before an item | -| styled_suffix | string | Printed after an item | -| color | color | Defines the default text color for items | -| background_color | color | Defines the default background color for items | -| bold | bool | Increases text intensity | -| faint | bool | Decreases text intensity | -| italic | bool | Prints the text in italic | -| crossed_out | bool | Enables strikethrough as text decoration | -| underline | bool | Enables underline as text decoration | -| overlined | bool | Enables overline as text decoration | -| blink | bool | Enables blinking text | -| conceal | bool | Conceals / hides the text | -| inverse | bool | Swaps fore- & background colors | -| ticked | string | Prefix for finished tasks | -| unticked | string | Prefix for unfinished tasks | - -### Example - -Markdown: - -``` -- [x] Finished Task -- [ ] Outstanding Task -``` - -Style: - -``` -"task": { - "ticked": "✓ ", - "unticked": "✗ " -} -``` - -Output: - -![Task Example](https://github.com/charmbracelet/gold/raw/master/styles/examples/task.png) - -## link - -The `link` element represents a link. - -### Attributes - -| Attribute | Value | Description | -| ---------------- | ------ | ---------------------------------------------- | -| prefix | string | Printed before the link | -| suffix | string | Printed after the link | -| styled_prefix | string | Printed before the link | -| styled_suffix | string | Printed after the link | -| color | color | Defines the default text color for links | -| background_color | color | Defines the default background color for links | -| bold | bool | Increases text intensity | -| faint | bool | Decreases text intensity | -| italic | bool | Prints the text in italic | -| crossed_out | bool | Enables strikethrough as text decoration | -| underline | bool | Enables underline as text decoration | -| overlined | bool | Enables overline as text decoration | -| blink | bool | Enables blinking text | -| conceal | bool | Conceals / hides the text | -| inverse | bool | Swaps fore- & background colors | - -### Example - -Markdown: - -``` -This is a [link](https://charm.sh). -``` - -Style: - -``` -"link": { - "color": "123", - "underline": true, - "prefix": "(", - "suffix": ")" -} -``` - -Output: - -![Link Example](https://github.com/charmbracelet/gold/raw/master/styles/examples/link.png) - -## link_text - -The `link_text` element represents the text associated with a link. - -### Attributes - -| Attribute | Value | Description | -| ---------------- | ------ | ------------------------------------------------- | -| prefix | string | Printed before the text | -| suffix | string | Printed after the text | -| styled_prefix | string | Printed before the text | -| styled_suffix | string | Printed after the text | -| color | color | Defines the default text color for the text | -| background_color | color | Defines the default background color for the text | -| bold | bool | Increases text intensity | -| faint | bool | Decreases text intensity | -| italic | bool | Prints the text in italic | -| crossed_out | bool | Enables strikethrough as text decoration | -| underline | bool | Enables underline as text decoration | -| overlined | bool | Enables overline as text decoration | -| blink | bool | Enables blinking text | -| conceal | bool | Conceals / hides the text | -| inverse | bool | Swaps fore- & background colors | - -### Example - -Style: - -``` -"link_text": { - "color": "123", - "bold": true -} -``` - -## image - -The `image` element represents an image. - -### Attributes - -| Attribute | Value | Description | -| ---------------- | ------ | ----------------------------------------------- | -| prefix | string | Printed before an image | -| suffix | string | Printed after an image | -| styled_prefix | string | Printed before an image | -| styled_suffix | string | Printed after an image | -| color | color | Defines the default text color for images | -| background_color | color | Defines the default background color for images | -| bold | bool | Increases text intensity | -| faint | bool | Decreases text intensity | -| italic | bool | Prints the text in italic | -| crossed_out | bool | Enables strikethrough as text decoration | -| underline | bool | Enables underline as text decoration | -| overlined | bool | Enables overline as text decoration | -| blink | bool | Enables blinking text | -| conceal | bool | Conceals / hides the text | -| inverse | bool | Swaps fore- & background colors | - -### Example - -Markdown: - -``` -![Image](https://charm.sh/logo.png). -``` - -Style: - -``` -"image": { - "color": "123", - "prefix": "[Image: ", - "suffix": "]" -} -``` - -Output: - -![Image Example](https://github.com/charmbracelet/gold/raw/master/styles/examples/image.png) - -## image_text - -The `image_text` element represents the text associated with an image. - -### Attributes - -| Attribute | Value | Description | -| ---------------- | ------ | ------------------------------------------------- | -| prefix | string | Printed before the text | -| suffix | string | Printed after the text | -| styled_prefix | string | Printed before the text | -| styled_suffix | string | Printed after the text | -| color | color | Defines the default text color for the text | -| background_color | color | Defines the default background color for the text | -| bold | bool | Increases text intensity | -| faint | bool | Decreases text intensity | -| italic | bool | Prints the text in italic | -| crossed_out | bool | Enables strikethrough as text decoration | -| underline | bool | Enables underline as text decoration | -| overlined | bool | Enables overline as text decoration | -| blink | bool | Enables blinking text | -| conceal | bool | Conceals / hides the text | -| inverse | bool | Swaps fore- & background colors | - -### Example - -Style: - -``` -"image_text": { - "color": "8" -} -``` - -## code - -The `code` element represents an inline code segment. - -### Attributes - -| Attribute | Value | Description | -| ---------------- | ------ | ---------------------------------------------- | -| prefix | string | Printed before the code | -| suffix | string | Printed after the code | -| styled_prefix | string | Printed before the code | -| styled_suffix | string | Printed after the code | -| color | color | Defines the default text color for codes | -| background_color | color | Defines the default background color for codes | -| bold | bool | Increases text intensity | -| faint | bool | Decreases text intensity | -| italic | bool | Prints the text in italic | -| crossed_out | bool | Enables strikethrough as text decoration | -| underline | bool | Enables underline as text decoration | -| overlined | bool | Enables overline as text decoration | -| blink | bool | Enables blinking text | -| conceal | bool | Conceals / hides the text | -| inverse | bool | Swaps fore- & background colors | - -### Example - -Style: - -``` -"code": { - "color": "200" -} -``` - -Output: - -![Code Example](https://github.com/charmbracelet/gold/raw/master/styles/examples/code.png) - -## code_block +### code_block The `code_block` element represents a block of code. -### Attributes - -| Attribute | Value | Description | -| ---------------- | ------ | --------------------------------------------------------------- | -| prefix | string | Printed before a code block | -| suffix | string | Printed after a code block | -| styled_prefix | string | Printed before a code block | -| styled_suffix | string | Printed after a code block | -| indent | number | Specifies the indentation of code blocks | -| margin | number | Specifies the margin around code blocks | -| theme | string | Defines the [Chroma][chroma] theme used for syntax highlighting | -| color | color | Defines the default text color for code blocks | -| background_color | color | Defines the default background color for code blocks | +| Attribute | Value | Description | +| --------- | ------ | --------------------------------------------------------------- | +| theme | string | Defines the [Chroma][chroma] theme used for syntax highlighting | [chroma]: https://github.com/alecthomas/chroma -### Example +#### Example Style: ``` "code_block": { - "margin": 4, "color": "200", "theme": "solarized-dark" } @@ -605,24 +178,11 @@ Output: ![Code Block Example](https://github.com/charmbracelet/gold/raw/master/styles/examples/code_block.png) -## table +### table The `table` element represents a table of data. -### Attributes - -| Attribute | Value | Description | -| ---------------- | ------ | ----------------------------------------------- | -| prefix | string | Printed before a table | -| suffix | string | Printed after a table | -| styled_prefix | string | Printed before a table | -| styled_suffix | string | Printed after a table | -| indent | number | Specifies the indentation of tables | -| margin | number | Specifies the margin around tables | -| color | color | Defines the default text color for tables | -| background_color | color | Defines the default background color for tables | - -### Example +#### Example Markdown: @@ -645,31 +205,231 @@ Output: ![Table Example](https://github.com/charmbracelet/gold/raw/master/styles/examples/table.png) -## emph +## Inline Elements + +All inline elements support the following style settings: + +| Attribute | Value | Description | +| ---------------- | ------ | ----------------------------------------------------- | +| prefix | string | Printed before the element | +| suffix | string | Printed after the element | +| styled_prefix | string | Printed before the element | +| styled_suffix | string | Printed after the element | +| color | color | Defines the default text color for the document | +| background_color | color | Defines the default background color for the document | +| bold | bool | Increases text intensity | +| faint | bool | Decreases text intensity | +| italic | bool | Prints the text in italic | +| crossed_out | bool | Enables strikethrough as text decoration | +| underline | bool | Enables underline as text decoration | +| overlined | bool | Enables overline as text decoration | +| blink | bool | Enables blinking text | +| conceal | bool | Conceals / hides the text | +| inverse | bool | Swaps fore- & background colors | + +### text + +The `text` element represents a block of text. + +#### Example + +Style: + +``` +"text": { + "bold": true, + "color": "15", + "background_color": "57" +} +``` + +### item + +The `item` element represents an item in a list. + +#### Example + +Markdown: + +``` +- First Item + - Nested List Item +- Second Item +``` + +Style: + +``` +"item": { + "prefix": "• " +} +``` + +Output: + +![List Example](https://github.com/charmbracelet/gold/raw/master/styles/examples/list.png) + +### enumeration + +The `enumeration` element represents an item in an ordered list. + +#### Example + +Markdown: + +``` +1. First Item +2. Second Item +``` + +Style: + +``` +"enumeration": { + "prefix": ". " +} +``` + +Output: + +![Enumeration Example](https://github.com/charmbracelet/gold/raw/master/styles/examples/enumeration.png) + +### task + +The `task` element represents a task item. + +| Attribute | Value | Description | +| --------- | ------ | --------------------------- | +| ticked | string | Prefix for finished tasks | +| unticked | string | Prefix for unfinished tasks | + +#### Example + +Markdown: + +``` +- [x] Finished Task +- [ ] Outstanding Task +``` + +Style: + +``` +"task": { + "ticked": "✓ ", + "unticked": "✗ " +} +``` + +Output: + +![Task Example](https://github.com/charmbracelet/gold/raw/master/styles/examples/task.png) + +### link + +The `link` element represents a link. + +#### Example + +Markdown: + +``` +This is a [link](https://charm.sh). +``` + +Style: + +``` +"link": { + "color": "123", + "underline": true, + "prefix": "(", + "suffix": ")" +} +``` + +Output: + +![Link Example](https://github.com/charmbracelet/gold/raw/master/styles/examples/link.png) + +### link_text + +The `link_text` element represents the text associated with a link. + +#### Example + +Style: + +``` +"link_text": { + "color": "123", + "bold": true +} +``` + +### image + +The `image` element represents an image. + +#### Example + +Markdown: + +``` +![Image](https://charm.sh/logo.png). +``` + +Style: + +``` +"image": { + "color": "123", + "prefix": "[Image: ", + "suffix": "]" +} +``` + +Output: + +![Image Example](https://github.com/charmbracelet/gold/raw/master/styles/examples/image.png) + +### image_text + +The `image_text` element represents the text associated with an image. + +#### Example + +Style: + +``` +"image_text": { + "color": "8" +} +``` + +### code + +The `code` element represents an inline code segment. + +#### Example + +Style: + +``` +"code": { + "color": "200" +} +``` + +Output: + +![Code Example](https://github.com/charmbracelet/gold/raw/master/styles/examples/code.png) + +### emph The `emph` element represents an emphasized text. -### Attributes - -| Attribute | Value | Description | -| ---------------- | ------ | ------------------------------------------------- | -| prefix | string | Printed before the text | -| suffix | string | Printed after the text | -| styled_prefix | string | Printed before the text | -| styled_suffix | string | Printed after the text | -| color | color | Defines the default text color for the text | -| background_color | color | Defines the default background color for the text | -| bold | bool | Increases text intensity | -| faint | bool | Decreases text intensity | -| italic | bool | Prints the text in italic | -| crossed_out | bool | Enables strikethrough as text decoration | -| underline | bool | Enables underline as text decoration | -| overlined | bool | Enables overline as text decoration | -| blink | bool | Enables blinking text | -| conceal | bool | Conceals / hides the text | -| inverse | bool | Swaps fore- & background colors | - -### Example +#### Example Markdown: @@ -689,31 +449,11 @@ Output: ![Emph Example](https://github.com/charmbracelet/gold/raw/master/styles/examples/emph.png) -## strong +### strong The `strong` element represents important text. -### Attributes - -| Attribute | Value | Description | -| ---------------- | ------ | ------------------------------------------------- | -| prefix | string | Printed before the text | -| suffix | string | Printed after the text | -| styled_prefix | string | Printed before the text | -| styled_suffix | string | Printed after the text | -| color | color | Defines the default text color for the text | -| background_color | color | Defines the default background color for the text | -| bold | bool | Increases text intensity | -| faint | bool | Decreases text intensity | -| italic | bool | Prints the text in italic | -| crossed_out | bool | Enables strikethrough as text decoration | -| underline | bool | Enables underline as text decoration | -| overlined | bool | Enables overline as text decoration | -| blink | bool | Enables blinking text | -| conceal | bool | Conceals / hides the text | -| inverse | bool | Swaps fore- & background colors | - -### Example +#### Example Markdown: @@ -733,31 +473,11 @@ Output: ![Strong Example](https://github.com/charmbracelet/gold/raw/master/styles/examples/strong.png) -## hr +### hr The `hr` element represents a horizontal rule. -### Attributes - -| Attribute | Value | Description | -| ---------------- | ------ | ------------------------------------------------------------ | -| prefix | string | Printed before the horizontal rule | -| suffix | string | Printed after the horizontal rule | -| styled_prefix | string | Printed before the horizontal rule | -| styled_suffix | string | Printed after the horizontal rule | -| color | color | Defines the default text color for the horizontal rule | -| background_color | color | Defines the default background color for the horizontal rule | -| bold | bool | Increases text intensity | -| faint | bool | Decreases text intensity | -| italic | bool | Prints the text in italic | -| crossed_out | bool | Enables strikethrough as text decoration | -| underline | bool | Enables underline as text decoration | -| overlined | bool | Enables overline as text decoration | -| blink | bool | Enables blinking text | -| conceal | bool | Conceals / hides the text | -| inverse | bool | Swaps fore- & background colors | - -### Example +#### Example Markdown: diff --git a/styles/examples/block_quote.png b/styles/examples/block_quote.png index 37b4527..2b47c9a 100644 Binary files a/styles/examples/block_quote.png and b/styles/examples/block_quote.png differ diff --git a/styles/examples/block_quote.style b/styles/examples/block_quote.style index 1093367..ab3602f 100644 --- a/styles/examples/block_quote.style +++ b/styles/examples/block_quote.style @@ -1,6 +1,5 @@ { "block_quote": { - "margin": 4, "color": "200" } } diff --git a/styles/examples/code.png b/styles/examples/code.png index 0cc3fba..914254a 100644 Binary files a/styles/examples/code.png and b/styles/examples/code.png differ diff --git a/styles/examples/code_block.png b/styles/examples/code_block.png index f76cae2..e0d796b 100644 Binary files a/styles/examples/code_block.png and b/styles/examples/code_block.png differ diff --git a/styles/examples/code_block.style b/styles/examples/code_block.style index ee735c3..d98f197 100644 --- a/styles/examples/code_block.style +++ b/styles/examples/code_block.style @@ -1,6 +1,5 @@ { "code_block": { - "margin": 4, "color": "200", "theme": "solarized-dark" } diff --git a/styles/examples/emph.png b/styles/examples/emph.png index b3a8d4f..f4bc28d 100644 Binary files a/styles/examples/emph.png and b/styles/examples/emph.png differ diff --git a/styles/examples/enumeration.png b/styles/examples/enumeration.png index 87869b3..d0ae661 100644 Binary files a/styles/examples/enumeration.png and b/styles/examples/enumeration.png differ diff --git a/styles/examples/enumeration.style b/styles/examples/enumeration.style index 2394bdd..0441fc1 100644 --- a/styles/examples/enumeration.style +++ b/styles/examples/enumeration.style @@ -1,6 +1,5 @@ { "list": { - "margin": 4, "color": "15", "background_color": "52" }, diff --git a/styles/examples/heading.png b/styles/examples/heading.png index 189695c..b8eb873 100644 Binary files a/styles/examples/heading.png and b/styles/examples/heading.png differ diff --git a/styles/examples/hr.png b/styles/examples/hr.png index 8045d79..e250e33 100644 Binary files a/styles/examples/hr.png and b/styles/examples/hr.png differ diff --git a/styles/examples/image.png b/styles/examples/image.png index c20dc79..fbb4c05 100644 Binary files a/styles/examples/image.png and b/styles/examples/image.png differ diff --git a/styles/examples/link.png b/styles/examples/link.png index c1d4055..df86ec2 100644 Binary files a/styles/examples/link.png and b/styles/examples/link.png differ diff --git a/styles/examples/list.png b/styles/examples/list.png index 4aaa048..7835b16 100644 Binary files a/styles/examples/list.png and b/styles/examples/list.png differ diff --git a/styles/examples/list.style b/styles/examples/list.style index 82bf32d..ce197c7 100644 --- a/styles/examples/list.style +++ b/styles/examples/list.style @@ -1,6 +1,5 @@ { "list": { - "margin": 4, "color": "15", "background_color": "52", "level_indent": 4 diff --git a/styles/examples/strong.png b/styles/examples/strong.png index 04c9d3f..f626e0a 100644 Binary files a/styles/examples/strong.png and b/styles/examples/strong.png differ diff --git a/styles/examples/table.png b/styles/examples/table.png index 7de08ba..d89ac3f 100644 Binary files a/styles/examples/table.png and b/styles/examples/table.png differ diff --git a/styles/examples/task.png b/styles/examples/task.png index 4af4c99..f27813d 100644 Binary files a/styles/examples/task.png and b/styles/examples/task.png differ diff --git a/styles/examples/task.style b/styles/examples/task.style index bc2f062..93de6b2 100644 --- a/styles/examples/task.style +++ b/styles/examples/task.style @@ -1,6 +1,5 @@ { "list": { - "margin": 4, "color": "15", "background_color": "52" },