zf

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

fruity.ex (898B)


      1 
      2 defmodule Makeup.Styles.HTML.FruityStyle do
      3   @moduledoc false
      4 
      5   @styles %{
      6     :keyword => "#fb660a bold",
      7     :keyword_pseudo => "nobold",
      8     :keyword_type => "#cdcaa9 bold",
      9     :name_attribute => "#ff0086 bold",
     10     :name_constant => "#0086d2",
     11     :name_function => "#ff0086 bold",
     12     :name_tag => "#fb660a bold",
     13     :name_variable => "#fb660a",
     14     :string => "#0086d2",
     15     :number => "#0086f7 bold",
     16     :comment => "#008800 bg:#0f140f italic",
     17     :comment_preproc => "#ff0007 bold",
     18     :generic_heading => "#ffffff bold",
     19     :generic_output => "#444444 bg:#222222",
     20     :generic_subheading => "#ffffff bold",
     21 
     22   }
     23 
     24   alias Makeup.Styles.HTML.Style
     25 
     26   @style_struct Style.make_style(
     27       short_name: "fruity",
     28       long_name: "Fruity Style",
     29       background_color: "#111111",
     30       highlight_color: "#333333",
     31       styles: @styles)
     32 
     33   def style() do
     34     @style_struct
     35   end
     36 end