zf

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

igor.ex (529B)


      1 
      2 defmodule Makeup.Styles.HTML.IgorStyle do
      3   @moduledoc false
      4 
      5 
      6   @styles %{
      7     :keyword => "#0000FF",
      8     :name_class => "#007575",
      9     :name_decorator => "#CC00A3",
     10     :name_function => "#C34E00",
     11     :string => "#009C00",
     12     :comment => "italic #FF0000",
     13 
     14   }
     15 
     16   alias Makeup.Styles.HTML.Style
     17 
     18   @style_struct Style.make_style(
     19       short_name: "igor",
     20       long_name: "Igor Style",
     21       background_color: "#ffffff",
     22       highlight_color: "#ffffcc",
     23       styles: @styles)
     24 
     25   def style() do
     26     @style_struct
     27   end
     28 end