zf

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

native.ex (1424B)


      1 
      2 defmodule Makeup.Styles.HTML.NativeStyle do
      3   @moduledoc false
      4 
      5   @styles %{
      6     :error => "bg:#e3d2d2 #a61717",
      7     :keyword => "bold #6ab825",
      8     :keyword_pseudo => "nobold",
      9     :name_attribute => "#bbbbbb",
     10     :name_builtin => "#24909d",
     11     :name_class => "underline #447fcf",
     12     :name_constant => "#40ffff",
     13     :name_decorator => "#ffa500",
     14     :name_exception => "#bbbbbb",
     15     :name_function => "#447fcf",
     16     :name_namespace => "underline #447fcf",
     17     :name_tag => "bold #6ab825",
     18     :name_variable => "#40ffff",
     19     :string => "#ed9d13",
     20     :string_other => "#ffa500",
     21     :number => "#3677a9",
     22     :operator_word => "bold #6ab825",
     23     :comment => "italic #999999",
     24     :comment_preproc => "noitalic bold #cd2828",
     25     :comment_special => "noitalic bold #e50808 bg:#520000",
     26     :generic_deleted => "#d22323",
     27     :generic_emph => "italic",
     28     :generic_error => "#d22323",
     29     :generic_heading => "bold #ffffff",
     30     :generic_inserted => "#589819",
     31     :generic_output => "#cccccc",
     32     :generic_prompt => "#aaaaaa",
     33     :generic_strong => "bold",
     34     :generic_subheading => "underline #ffffff",
     35     :generic_traceback => "#d22323"
     36 
     37   }
     38 
     39   alias Makeup.Styles.HTML.Style
     40 
     41   @style_struct Style.make_style(
     42       short_name: "native",
     43       long_name: "Native Style",
     44       background_color: "#202020",
     45       highlight_color: "#404040",
     46       styles: @styles)
     47 
     48   def style() do
     49     @style_struct
     50   end
     51 end