zf

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

autumn.ex (1411B)


      1 
      2 defmodule Makeup.Styles.HTML.AutumnStyle do
      3   @moduledoc false
      4 
      5   @styles %{
      6     :error => "#F00 bg:#FAA",
      7     :keyword => "#0000aa",
      8     :keyword_type => "#00aaaa",
      9     :name_attribute => "#1e90ff",
     10     :name_builtin => "#00aaaa",
     11     :name_class => "underline #00aa00",
     12     :name_constant => "#aa0000",
     13     :name_decorator => "#888888",
     14     :name_entity => "bold #800",
     15     :name_function => "#00aa00",
     16     :name_namespace => "underline #00aaaa",
     17     :name_tag => "bold #1e90ff",
     18     :name_variable => "#aa0000",
     19     :string => "#aa5500",
     20     :string_regex => "#009999",
     21     :string_symbol => "#0000aa",
     22     :number => "#009999",
     23     :operator_word => "#0000aa",
     24     :comment => "italic #aaaaaa",
     25     :comment_preproc => "noitalic #4c8317",
     26     :comment_special => "italic #0000aa",
     27     :generic_deleted => "#aa0000",
     28     :generic_emph => "italic",
     29     :generic_error => "#aa0000",
     30     :generic_heading => "bold #000080",
     31     :generic_inserted => "#00aa00",
     32     :generic_output => "#888888",
     33     :generic_prompt => "#555555",
     34     :generic_strong => "bold",
     35     :generic_subheading => "bold #800080",
     36     :generic_traceback => "#aa0000"
     37 
     38   }
     39 
     40   alias Makeup.Styles.HTML.Style
     41 
     42   @style_struct Style.make_style(
     43       short_name: "autumn",
     44       long_name: "Autumn Style",
     45       background_color: "#ffffff",
     46       highlight_color: "#ffffcc",
     47       styles: @styles)
     48 
     49   def style() do
     50     @style_struct
     51   end
     52 end