zf

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

borland.ex (1085B)


      1 
      2 defmodule Makeup.Styles.HTML.BorlandStyle do
      3   @moduledoc false
      4 
      5   @styles %{
      6     :error => "bg:#e3d2d2 #a61717",
      7     :keyword => "bold #000080",
      8     :name_attribute => "#FF0000",
      9     :name_tag => "bold #000080",
     10     :string => "#0000FF",
     11     :string_char => "#800080",
     12     :number => "#0000FF",
     13     :operator_word => "bold",
     14     :comment => "italic #008800",
     15     :comment_preproc => "noitalic #008080",
     16     :comment_special => "noitalic bold",
     17     :generic_deleted => "bg:#ffdddd #000000",
     18     :generic_emph => "italic",
     19     :generic_error => "#aa0000",
     20     :generic_heading => "#999999",
     21     :generic_inserted => "bg:#ddffdd #000000",
     22     :generic_output => "#888888",
     23     :generic_prompt => "#555555",
     24     :generic_strong => "bold",
     25     :generic_subheading => "#aaaaaa",
     26     :generic_traceback => "#aa0000"
     27 
     28   }
     29 
     30   alias Makeup.Styles.HTML.Style
     31 
     32   @style_struct Style.make_style(
     33       short_name: "borland",
     34       long_name: "Borland Style",
     35       background_color: "#ffffff",
     36       highlight_color: "#ffffcc",
     37       styles: @styles)
     38 
     39   def style() do
     40     @style_struct
     41   end
     42 end