zf

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

default.ex (1652B)


      1 
      2 defmodule Makeup.Styles.HTML.DefaultStyle do
      3   @moduledoc false
      4 
      5   @styles %{
      6     :error => "border:#FF0000",
      7     :keyword => "bold #008000",
      8     :keyword_pseudo => "nobold",
      9     :keyword_type => "nobold #B00040",
     10     :name_attribute => "#7D9029",
     11     :name_builtin => "#008000",
     12     :name_class => "bold #0000FF",
     13     :name_constant => "#880000",
     14     :name_decorator => "#AA22FF",
     15     :name_entity => "bold #999999",
     16     :name_exception => "bold #D2413A",
     17     :name_function => "#0000FF",
     18     :name_label => "#A0A000",
     19     :name_namespace => "bold #0000FF",
     20     :name_tag => "bold #008000",
     21     :name_variable => "#19177C",
     22     :string => "#BA2121",
     23     :string_doc => "italic",
     24     :string_escape => "bold #BB6622",
     25     :string_interpol => "bold #BB6688",
     26     :string_other => "#008000",
     27     :string_regex => "#BB6688",
     28     :string_symbol => "#19177C",
     29     :number => "#666666",
     30     :operator => "#666666",
     31     :operator_word => "bold #AA22FF",
     32     :comment => "italic #408080",
     33     :comment_preproc => "noitalic #BC7A00",
     34     :generic_deleted => "#A00000",
     35     :generic_emph => "italic",
     36     :generic_error => "#FF0000",
     37     :generic_heading => "bold #000080",
     38     :generic_inserted => "#00A000",
     39     :generic_output => "#888",
     40     :generic_prompt => "bold #000080",
     41     :generic_strong => "bold",
     42     :generic_subheading => "bold #800080",
     43     :generic_traceback => "#04D"
     44 
     45   }
     46 
     47   alias Makeup.Styles.HTML.Style
     48 
     49   @style_struct Style.make_style(
     50       short_name: "default",
     51       long_name: "Default Style",
     52       background_color: "#f8f8f8",
     53       highlight_color: "#ffffcc",
     54       styles: @styles)
     55 
     56   def style() do
     57     @style_struct
     58   end
     59 end