From dde3084106a70b9a79d48f426f6d6fec6fd203f7 Mon Sep 17 00:00:00 2001 From: akianonymus Date: Mon, 27 Feb 2023 14:30:10 +0530 Subject: Separate parsers into individual files --- doc/colorizer.txt | 231 ++++++++++++++++++----------- doc/index.html | 27 +++- doc/modules/colorizer.buffer.html | 5 + doc/modules/colorizer.color.html | 187 +---------------------- doc/modules/colorizer.html | 5 + doc/modules/colorizer.matcher.html | 5 + doc/modules/colorizer.parser.argb_hex.html | 124 ++++++++++++++++ doc/modules/colorizer.parser.hsl.html | 127 ++++++++++++++++ doc/modules/colorizer.parser.names.html | 120 +++++++++++++++ doc/modules/colorizer.parser.rgb.html | 127 ++++++++++++++++ doc/modules/colorizer.parser.rgba_hex.html | 127 ++++++++++++++++ doc/modules/colorizer.sass.html | 5 + doc/modules/colorizer.tailwind.html | 5 + doc/modules/colorizer.trie.html | 5 + doc/modules/colorizer.utils.html | 5 + 15 files changed, 840 insertions(+), 265 deletions(-) create mode 100644 doc/modules/colorizer.parser.argb_hex.html create mode 100644 doc/modules/colorizer.parser.hsl.html create mode 100644 doc/modules/colorizer.parser.names.html create mode 100644 doc/modules/colorizer.parser.rgb.html create mode 100644 doc/modules/colorizer.parser.rgba_hex.html (limited to 'doc') diff --git a/doc/colorizer.txt b/doc/colorizer.txt index a7d21b5..491e5b5 100644 --- a/doc/colorizer.txt +++ b/doc/colorizer.txt @@ -412,34 +412,124 @@ default_namespace *colorizer.buffer.default_namespace* ============================================================================== COLOR *colorizer.color-introduction* -Helper functions to parse different colour formats +Helper color functions ============================================================================== LUA API *colorizer.color-lua-api* Functions: ~ - |argb_hex_parser| - parse for 0xaarrggbb and return rgb hex. - |hsl_to_rgb| - Converts an HSL color value to RGB. - |hsl_function_parser| - Parse for hsl() hsla() css function and return rgb - hex. - |hue_to_rgb| - Convert hsl colour values to rgb. |is_bright| - Determine whether to use black or white text. - |name_parser| - Grab all the colour values from `vim.api.nvim_get_color_map` - and create a lookup table. - |rgb_function_parser| - Parse for rgb() rgba() css function and return rgb - hex. +hsl_to_rgb({h}, {s}, {l}) *colorizer.color.hsl_to_rgb* + Converts an HSL color value to RGB. + + Parameters: ~ + {h} - number: Hue + {s} - number: Saturation + {l} - number: Lightness + + returns:~ + number or nil,number or nil,number or nil + + + +hue_to_rgb({p}, {q}, {t}) *colorizer.color.hue_to_rgb* + Convert hsl colour values to rgb. + + Source: https://gist.github.com/mjackson/5311256 + + + Parameters: ~ + {p} - number + {q} - number + {t} - number + + returns:~ + number + + + +is_bright({r}, {g}, {b}) *colorizer.color.is_bright* + Determine whether to use black or white text. + + + ref: https://stackoverflow.com/a/1855903/837964 + https://stackoverflow.com/questions/596216/formula-to-determine-brightness-of-rgb-color + + + Parameters: ~ + {r} - number: Red + {g} - number: Green + {b} - number: Blue + + + +============================================================================== +MATCHER *colorizer.matcher-introduction* + +Helper functions for colorizer to enable required parsers + + +============================================================================== +LUA API *colorizer.matcher-lua-api* + +Functions: ~ + |compile| - Form a trie stuct with the given prefixes + + |make| - Parse the given options and return a function with enabled parsers. + + +compile({matchers}, {matchers_trie}) *colorizer.matcher.compile* + Form a trie stuct with the given prefixes + + Parameters: ~ + {matchers} - table: List of prefixes, {"rgb", "hsl"} + {matchers_trie} - table: Table containing information regarding + non-trie based parsers + + returns:~ + function: function which will just parse the line for enabled parsers + + + +make({options}) *colorizer.matcher.make* + Parse the given options and return a function with enabled parsers. + + if no parsers enabled then return false + Do not try make the function again if it is present in the cache - |rgba_hex_parser| - parse for #rrggbbaa and return rgb hex. + Parameters: ~ + {options} - table: options created in `colorizer.setup` -argb_hex_parser({line}, {i}) *colorizer.color.argb_hex_parser* + returns:~ + function or boolean: function which will just parse the line for enabled + parsers + + + +============================================================================== +ARGB_HEX *colorizer.parser.argb_hex-introduction* + +Helper function to parse argb + + +============================================================================== +LUA API *colorizer.parser.argb_hex-lua-api* + +Functions: ~ + |parser.argb_hex_parser| - parse for 0xaarrggbb and return rgb hex. + + + + *colorizer.parser.argb_hex.parser.argb_hex_parser* +parser.argb_hex_parser({line}, {i}) parse for 0xaarrggbb and return rgb hex. a format used in android apps @@ -455,20 +545,23 @@ argb_hex_parser({line}, {i}) *colorizer.color.argb_hex_parser* -hsl_to_rgb({h}, {s}, {l}) *colorizer.color.hsl_to_rgb* - Converts an HSL color value to RGB. +============================================================================== +HSL *colorizer.parser.hsl-introduction* - Parameters: ~ - {h} - number: Hue - {s} - number: Saturation - {l} - number: Lightness +Helper function to parse argb - returns:~ - number or nil,number or nil,number or nil + +============================================================================== +LUA API *colorizer.parser.hsl-lua-api* + +Functions: ~ + |parser.hsl_function_parser| - Parse for hsl() hsla() css function and + return rgb hex. -hsl_function_parser({line}, {i}, {opts}) *colorizer.color.hsl_function_parser* + *colorizer.parser.hsl.parser.hsl_function_parser* +parser.hsl_function_parser({line}, {i}, {opts}) Parse for hsl() hsla() css function and return rgb hex. For more info: @@ -486,38 +579,23 @@ hsl_function_parser({line}, {i}, {opts}) *colorizer.color.hsl_function_parser* -hue_to_rgb({p}, {q}, {t}) *colorizer.color.hue_to_rgb* - Convert hsl colour values to rgb. - - Source: https://gist.github.com/mjackson/5311256 - - - Parameters: ~ - {p} - number - {q} - number - {t} - number - - returns:~ - number - - - -is_bright({r}, {g}, {b}) *colorizer.color.is_bright* - Determine whether to use black or white text. +============================================================================== +NAMES *colorizer.parser.names-introduction* +Helper function to parse argb - ref: https://stackoverflow.com/a/1855903/837964 - https://stackoverflow.com/questions/596216/formula-to-determine-brightness-of-rgb-color +============================================================================== +LUA API *colorizer.parser.names-lua-api* - Parameters: ~ - {r} - number: Red - {g} - number: Green - {b} - number: Blue +Functions: ~ + |parser.name_parser| - Grab all the colour values from + `vim.api.nvim_get_color_map` and create a lookup table. -name_parser({line}, {i}, {opts}) *colorizer.color.name_parser* + *colorizer.parser.names.parser.name_parser* +parser.name_parser({line}, {i}, {opts}) Grab all the colour values from `vim.api.nvim_get_color_map` and create a lookup table. @@ -531,25 +609,22 @@ name_parser({line}, {i}, {opts}) *colorizer.color.name_parser* -rgb_function_parser({line}, {i}, {opts}) *colorizer.color.rgb_function_parser* - Parse for rgb() rgba() css function and return rgb hex. +============================================================================== +RGBA_HEX *colorizer.parser.rgba_hex-introduction* - For more info: - https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/rgb +Helper function to parse argb - Parameters: ~ - {line} - string: Line to parse - {i} - number: Index of line from where to start parsing - {opts} - table: Values passed from matchers like prefix +============================================================================== +LUA API *colorizer.parser.rgba_hex-lua-api* - returns:~ - number or nil: Index of line where the rgb/rgba function ended - string or nil: rgb hex value +Functions: ~ + |parser.rgba_hex_parser| - parse for #rrggbbaa and return rgb hex. -rgba_hex_parser({line}, {i}, {opts}) *colorizer.color.rgba_hex_parser* + *colorizer.parser.rgba_hex.parser.rgba_hex_parser* +parser.rgba_hex_parser({line}, {i}, {opts}) parse for #rrggbbaa and return rgb hex. a format used in android apps @@ -567,46 +642,36 @@ rgba_hex_parser({line}, {i}, {opts}) *colorizer.color.rgba_hex_parser* ============================================================================== -MATCHER *colorizer.matcher-introduction* +RGB *colorizer.parser.rgb-introduction* -Helper functions for colorizer to enable required parsers +Helper function to parse argb ============================================================================== -LUA API *colorizer.matcher-lua-api* +LUA API *colorizer.parser.rgb-lua-api* Functions: ~ - |compile| - Form a trie stuct with the given prefixes + |parser.rgb_function_parser| - Parse for rgb() rgba() css function and + return rgb hex. - |make| - Parse the given options and return a function with enabled parsers. -compile({matchers}, {matchers_trie}) *colorizer.matcher.compile* - Form a trie stuct with the given prefixes - - Parameters: ~ - {matchers} - table: List of prefixes, {"rgb", "hsl"} - {matchers_trie} - table: Table containing information regarding - non-trie based parsers - - returns:~ - function: function which will just parse the line for enabled parsers - - - -make({options}) *colorizer.matcher.make* - Parse the given options and return a function with enabled parsers. + *colorizer.parser.rgb.parser.rgb_function_parser* +parser.rgb_function_parser({line}, {i}, {opts}) + Parse for rgb() rgba() css function and return rgb hex. - if no parsers enabled then return false - Do not try make the function again if it is present in the cache + For more info: + https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/rgb Parameters: ~ - {options} - table: options created in `colorizer.setup` + {line} - string: Line to parse + {i} - number: Index of line from where to start parsing + {opts} - table: Values passed from matchers like prefix returns:~ - function or boolean: function which will just parse the line for enabled - parsers + number or nil: Index of line where the rgb/rgba function ended + string or nil: rgb hex value diff --git a/doc/index.html b/doc/index.html index 7735382..3070ca2 100644 --- a/doc/index.html +++ b/doc/index.html @@ -35,6 +35,11 @@
  • buffer
  • color
  • matcher
  • +
  • parser.argb_hex
  • +
  • parser.hsl
  • +
  • parser.names
  • +
  • parser.rgb
  • +
  • parser.rgba_hex
  • sass
  • tailwind
  • trie
  • @@ -59,12 +64,32 @@ colorizer.color - Helper functions to parse different colour formats + Helper color functions colorizer.matcher Helper functions for colorizer to enable required parsers + + colorizer.parser.argb_hex + Helper function to parse argb + + + colorizer.parser.hsl + Helper function to parse argb + + + colorizer.parser.names + Helper function to parse argb + + + colorizer.parser.rgb + Helper function to parse argb + + + colorizer.parser.rgba_hex + Helper function to parse argb + colorizer.sass Helper functions to parse sass color variables diff --git a/doc/modules/colorizer.buffer.html b/doc/modules/colorizer.buffer.html index 6bce06a..53de887 100644 --- a/doc/modules/colorizer.buffer.html +++ b/doc/modules/colorizer.buffer.html @@ -44,6 +44,11 @@
  • buffer
  • color
  • matcher
  • +
  • parser.argb_hex
  • +
  • parser.hsl
  • +
  • parser.names
  • +
  • parser.rgb
  • +
  • parser.rgba_hex
  • sass
  • tailwind
  • trie
  • diff --git a/doc/modules/colorizer.color.html b/doc/modules/colorizer.color.html index 5947611..37a92cd 100644 --- a/doc/modules/colorizer.color.html +++ b/doc/modules/colorizer.color.html @@ -42,6 +42,11 @@
  • buffer
  • color
  • matcher
  • +
  • parser.argb_hex
  • +
  • parser.hsl
  • +
  • parser.names
  • +
  • parser.rgb
  • +
  • parser.rgba_hex
  • sass
  • tailwind
  • trie
  • @@ -53,7 +58,7 @@

    Module colorizer.color

    -

    Helper functions to parse different colour formats

    +

    Helper color functions

    @@ -61,19 +66,11 @@

    Functions

    - - - - - - - - @@ -81,18 +78,6 @@ - - - - - - - - - - - -
    argb_hex_parser (line, i)parse for 0xaarrggbb and return rgb hex.
    hsl_to_rgb (h, s, l) Converts an HSL color value to RGB.
    hsl_function_parser (line, i, opts)Parse for hsl() hsla() css function and return rgb hex.
    hue_to_rgb (p, q, t) Convert hsl colour values to rgb.
    is_bright (r, g, b) Determine whether to use black or white text.
    name_parser (line, i, opts)Grab all the colour values from vim.api.nvim_get_color_map and create a lookup table.
    rgb_function_parser (line, i, opts)Parse for rgb() rgba() css function and return rgb hex.
    rgba_hex_parser (line, i, opts)parse for #rrggbbaa and return rgb hex.

    @@ -102,37 +87,6 @@

    Functions

    -
    - - argb_hex_parser (line, i) -
    -
    - parse for 0xaarrggbb and return rgb hex. - a format used in android apps - - -

    Parameters:

    -
      -
    • line - string: line to parse -
    • -
    • i - number: index of line from where to start parsing -
    • -
    - -

    Returns:

    -
      -
    1. - number|nil: index of line where the hex value ended
    2. -
    3. - string|nil: rgb hex value
    4. -
    - - - - -
    hsl_to_rgb (h, s, l) @@ -163,40 +117,6 @@ - -
    - - hsl_function_parser (line, i, opts) -
    -
    - Parse for hsl() hsla() css function and return rgb hex. - For more info: https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/hsl - - -

    Parameters:

    -
      -
    • line - string: Line to parse -
    • -
    • i - number: Index of line from where to start parsing -
    • -
    • opts - table: Values passed from matchers like prefix -
    • -
    - -

    Returns:

    -
      -
    1. - number|nil: Index of line where the hsla/hsl function ended
    2. -
    3. - string|nil: rgb hex value
    4. -
    - - - -
    @@ -258,101 +178,6 @@ - -
    - - name_parser (line, i, opts) -
    -
    - Grab all the colour values from vim.api.nvim_get_color_map and create a lookup table. - COLOR_MAP is used to store the colour values - - -

    Parameters:

    -
      -
    • line - string: Line to parse -
    • -
    • i - number: Index of line from where to start parsing -
    • -
    • opts - table: Currently contains whether tailwind is enabled or not -
    • -
    - - - - - -
    -
    - - rgb_function_parser (line, i, opts) -
    -
    - Parse for rgb() rgba() css function and return rgb hex. - For more info: https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/rgb - - -

    Parameters:

    -
      -
    • line - string: Line to parse -
    • -
    • i - number: Index of line from where to start parsing -
    • -
    • opts - table: Values passed from matchers like prefix -
    • -
    - -

    Returns:

    -
      -
    1. - number|nil: Index of line where the rgb/rgba function ended
    2. -
    3. - string|nil: rgb hex value
    4. -
    - - - - -
    -
    - - rgba_hex_parser (line, i, opts) -
    -
    - parse for #rrggbbaa and return rgb hex. - a format used in android apps - - -

    Parameters:

    -
      -
    • line - string: line to parse -
    • -
    • i - number: index of line from where to start parsing -
    • -
    • opts - table: Containing minlen, maxlen, valid_lengths -
    • -
    - -

    Returns:

    -
      -
    1. - number|nil: index of line where the hex value ended
    2. -
    3. - string|nil: rgb hex value
    4. -
    - - - -
    diff --git a/doc/modules/colorizer.html b/doc/modules/colorizer.html index 1d338e1..ad89e1b 100644 --- a/doc/modules/colorizer.html +++ b/doc/modules/colorizer.html @@ -44,6 +44,11 @@
  • buffer
  • color
  • matcher
  • +
  • parser.argb_hex
  • +
  • parser.hsl
  • +
  • parser.names
  • +
  • parser.rgb
  • +
  • parser.rgba_hex
  • sass
  • tailwind
  • trie
  • diff --git a/doc/modules/colorizer.matcher.html b/doc/modules/colorizer.matcher.html index 3034bb2..971193b 100644 --- a/doc/modules/colorizer.matcher.html +++ b/doc/modules/colorizer.matcher.html @@ -42,6 +42,11 @@
  • buffer
  • color
  • matcher
  • +
  • parser.argb_hex
  • +
  • parser.hsl
  • +
  • parser.names
  • +
  • parser.rgb
  • +
  • parser.rgba_hex
  • sass
  • tailwind
  • trie
  • diff --git a/doc/modules/colorizer.parser.argb_hex.html b/doc/modules/colorizer.parser.argb_hex.html new file mode 100644 index 0000000..52b4387 --- /dev/null +++ b/doc/modules/colorizer.parser.argb_hex.html @@ -0,0 +1,124 @@ + + + + + colorizer Docs + + + + +
    + +
    + +
    +
    +
    + + +
    + + + + + + +
    + +

    Module colorizer.parser.argb_hex

    +

    Helper function to parse argb

    +

    + +

    + + +

    Functions

    + + + + + +
    parser.argb_hex_parser (line, i)parse for 0xaarrggbb and return rgb hex.
    + +
    +
    + + +

    Functions

    + +
    +
    + + parser.argb_hex_parser (line, i) +
    +
    + parse for 0xaarrggbb and return rgb hex. + a format used in android apps + + +

    Parameters:

    +
      +
    • line + string: line to parse +
    • +
    • i + number: index of line from where to start parsing +
    • +
    + +

    Returns:

    +
      +
    1. + number|nil: index of line where the hex value ended
    2. +
    3. + string|nil: rgb hex value
    4. +
    + + + + +
    +
    + + +
    +
    +
    +generated by LDoc 1.4.6 +Last updated - February +
    +
    + + diff --git a/doc/modules/colorizer.parser.hsl.html b/doc/modules/colorizer.parser.hsl.html new file mode 100644 index 0000000..b42e253 --- /dev/null +++ b/doc/modules/colorizer.parser.hsl.html @@ -0,0 +1,127 @@ + + + + + colorizer Docs + + + + +
    + +
    + +
    +
    +
    + + +
    + + + + + + +
    + +

    Module colorizer.parser.hsl

    +

    Helper function to parse argb

    +

    + +

    + + +

    Functions

    + + + + + +
    parser.hsl_function_parser (line, i, opts)Parse for hsl() hsla() css function and return rgb hex.
    + +
    +
    + + +

    Functions

    + +
    +
    + + parser.hsl_function_parser (line, i, opts) +
    +
    + Parse for hsl() hsla() css function and return rgb hex. + For more info: https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/hsl + + +

    Parameters:

    +
      +
    • line + string: Line to parse +
    • +
    • i + number: Index of line from where to start parsing +
    • +
    • opts + table: Values passed from matchers like prefix +
    • +
    + +

    Returns:

    +
      +
    1. + number|nil: Index of line where the hsla/hsl function ended
    2. +
    3. + string|nil: rgb hex value
    4. +
    + + + + +
    +
    + + +
    +
    +
    +generated by LDoc 1.4.6 +Last updated - February +
    +
    + + diff --git a/doc/modules/colorizer.parser.names.html b/doc/modules/colorizer.parser.names.html new file mode 100644 index 0000000..d826dee --- /dev/null +++ b/doc/modules/colorizer.parser.names.html @@ -0,0 +1,120 @@ + + + + + colorizer Docs + + + + +
    + +
    + +
    +
    +
    + + +
    + + + + + + +
    + +

    Module colorizer.parser.names

    +

    Helper function to parse argb

    +

    + +

    + + +

    Functions

    + + + + + +
    parser.name_parser (line, i, opts)Grab all the colour values from vim.api.nvim_get_color_map and create a lookup table.
    + +
    +
    + + +

    Functions

    + +
    +
    + + parser.name_parser (line, i, opts) +
    +
    + Grab all the colour values from vim.api.nvim_get_color_map and create a lookup table. + COLOR_MAP is used to store the colour values + + +

    Parameters:

    +
      +
    • line + string: Line to parse +
    • +
    • i + number: Index of line from where to start parsing +
    • +
    • opts + table: Currently contains whether tailwind is enabled or not +
    • +
    + + + + + +
    +
    + + +
    +
    +
    +generated by LDoc 1.4.6 +Last updated - February +
    +
    + + diff --git a/doc/modules/colorizer.parser.rgb.html b/doc/modules/colorizer.parser.rgb.html new file mode 100644 index 0000000..0e30612 --- /dev/null +++ b/doc/modules/colorizer.parser.rgb.html @@ -0,0 +1,127 @@ + + + + + colorizer Docs + + + + +
    + +
    + +
    +
    +
    + + +
    + + + + + + +
    + +

    Module colorizer.parser.rgb

    +

    Helper function to parse argb

    +

    + +

    + + +

    Functions

    + + + + + +
    parser.rgb_function_parser (line, i, opts)Parse for rgb() rgba() css function and return rgb hex.
    + +
    +
    + + +

    Functions

    + +
    +
    + + parser.rgb_function_parser (line, i, opts) +
    +
    + Parse for rgb() rgba() css function and return rgb hex. + For more info: https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/rgb + + +

    Parameters:

    +
      +
    • line + string: Line to parse +
    • +
    • i + number: Index of line from where to start parsing +
    • +
    • opts + table: Values passed from matchers like prefix +
    • +
    + +

    Returns:

    +
      +
    1. + number|nil: Index of line where the rgb/rgba function ended
    2. +
    3. + string|nil: rgb hex value
    4. +
    + + + + +
    +
    + + +
    +
    +
    +generated by LDoc 1.4.6 +Last updated - February +
    +
    + + diff --git a/doc/modules/colorizer.parser.rgba_hex.html b/doc/modules/colorizer.parser.rgba_hex.html new file mode 100644 index 0000000..3e7187e --- /dev/null +++ b/doc/modules/colorizer.parser.rgba_hex.html @@ -0,0 +1,127 @@ + + + + + colorizer Docs + + + + +
    + +
    + +
    +
    +
    + + +
    + + + + + + +
    + +

    Module colorizer.parser.rgba_hex

    +

    Helper function to parse argb

    +

    + +

    + + +

    Functions

    + + + + + +
    parser.rgba_hex_parser (line, i, opts)parse for #rrggbbaa and return rgb hex.
    + +
    +
    + + +

    Functions

    + +
    +
    + + parser.rgba_hex_parser (line, i, opts) +
    +
    + parse for #rrggbbaa and return rgb hex. + a format used in android apps + + +

    Parameters:

    +
      +
    • line + string: line to parse +
    • +
    • i + number: index of line from where to start parsing +
    • +
    • opts + table: Containing minlen, maxlen, valid_lengths +
    • +
    + +

    Returns:

    +
      +
    1. + number|nil: index of line where the hex value ended
    2. +
    3. + string|nil: rgb hex value
    4. +
    + + + + +
    +
    + + +
    +
    +
    +generated by LDoc 1.4.6 +Last updated - February +
    +
    + + diff --git a/doc/modules/colorizer.sass.html b/doc/modules/colorizer.sass.html index cf0d133..0f93f28 100644 --- a/doc/modules/colorizer.sass.html +++ b/doc/modules/colorizer.sass.html @@ -42,6 +42,11 @@
  • buffer
  • color
  • matcher
  • +
  • parser.argb_hex
  • +
  • parser.hsl
  • +
  • parser.names
  • +
  • parser.rgb
  • +
  • parser.rgba_hex
  • sass
  • tailwind
  • trie
  • diff --git a/doc/modules/colorizer.tailwind.html b/doc/modules/colorizer.tailwind.html index 346a21a..76ea36f 100644 --- a/doc/modules/colorizer.tailwind.html +++ b/doc/modules/colorizer.tailwind.html @@ -42,6 +42,11 @@
  • buffer
  • color
  • matcher
  • +
  • parser.argb_hex
  • +
  • parser.hsl
  • +
  • parser.names
  • +
  • parser.rgb
  • +
  • parser.rgba_hex
  • sass
  • tailwind
  • trie
  • diff --git a/doc/modules/colorizer.trie.html b/doc/modules/colorizer.trie.html index 9071219..ba03d80 100644 --- a/doc/modules/colorizer.trie.html +++ b/doc/modules/colorizer.trie.html @@ -38,6 +38,11 @@
  • buffer
  • color
  • matcher
  • +
  • parser.argb_hex
  • +
  • parser.hsl
  • +
  • parser.names
  • +
  • parser.rgb
  • +
  • parser.rgba_hex
  • sass
  • tailwind
  • trie
  • diff --git a/doc/modules/colorizer.utils.html b/doc/modules/colorizer.utils.html index 5ebd197..f9654af 100644 --- a/doc/modules/colorizer.utils.html +++ b/doc/modules/colorizer.utils.html @@ -42,6 +42,11 @@
  • buffer
  • color
  • matcher
  • +
  • parser.argb_hex
  • +
  • parser.hsl
  • +
  • parser.names
  • +
  • parser.rgb
  • +
  • parser.rgba_hex
  • sass
  • tailwind
  • trie
  • -- cgit v1.2.3-70-g09d2