zf

zenflows testing
git clone https://s.sonu.ch/~srfsh/zf.git
Log | Files | Refs | Submodules | README | LICENSE

manni.ex (1712B)


      1 
      2 defmodule Makeup.Styles.HTML.ManniStyle do
      3   @moduledoc false
      4 
      5   @styles %{
      6     :error => "bg:#FFAAAA #AA0000",
      7     :keyword => "bold #006699",
      8     :keyword_pseudo => "nobold",
      9     :keyword_type => "#007788",
     10     :name_attribute => "#330099",
     11     :name_builtin => "#336666",
     12     :name_class => "bold #00AA88",
     13     :name_constant => "#336600",
     14     :name_decorator => "#9999FF",
     15     :name_entity => "bold #999999",
     16     :name_exception => "bold #CC0000",
     17     :name_function => "#CC00FF",
     18     :name_label => "#9999FF",
     19     :name_namespace => "bold #00CCFF",
     20     :name_tag => "bold #330099",
     21     :name_variable => "#003333",
     22     :string => "#CC3300",
     23     :string_doc => "italic",
     24     :string_escape => "bold #CC3300",
     25     :string_interpol => "#AA0000",
     26     :string_other => "#CC3300",
     27     :string_regex => "#33AAAA",
     28     :string_symbol => "#FFCC33",
     29     :number => "#FF6600",
     30     :operator => "#555555",
     31     :operator_word => "bold #000000",
     32     :comment => "italic #0099FF",
     33     :comment_preproc => "noitalic #009999",
     34     :comment_special => "bold",
     35     :generic_deleted => "border:#CC0000 bg:#FFCCCC",
     36     :generic_emph => "italic",
     37     :generic_error => "#FF0000",
     38     :generic_heading => "bold #003300",
     39     :generic_inserted => "border:#00CC00 bg:#CCFFCC",
     40     :generic_output => "#AAAAAA",
     41     :generic_prompt => "bold #000099",
     42     :generic_strong => "bold",
     43     :generic_subheading => "bold #003300",
     44     :generic_traceback => "#99CC66"
     45 
     46   }
     47 
     48   alias Makeup.Styles.HTML.Style
     49 
     50   @style_struct Style.make_style(
     51       short_name: "manni",
     52       long_name: "Manni Style",
     53       background_color: "#f0f3f3",
     54       highlight_color: "#ffffcc",
     55       styles: @styles)
     56 
     57   def style() do
     58     @style_struct
     59   end
     60 end