zf

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

rrt.ex (587B)


      1 
      2 defmodule Makeup.Styles.HTML.RrtStyle do
      3   @moduledoc false
      4 
      5   @styles %{
      6     :keyword => "#ff0000",
      7     :keyword_type => "#ee82ee",
      8     :name_constant => "#7fffd4",
      9     :name_function => "#ffff00",
     10     :name_variable => "#eedd82",
     11     :string => "#87ceeb",
     12     :comment => "#00ff00",
     13     :comment_preproc => "#e5e5e5",
     14 
     15   }
     16 
     17   alias Makeup.Styles.HTML.Style
     18 
     19   @style_struct Style.make_style(
     20       short_name: "rrt",
     21       long_name: "Rrt Style",
     22       background_color: "#000000",
     23       highlight_color: "#0000ff",
     24       styles: @styles)
     25 
     26   def style() do
     27     @style_struct
     28   end
     29 end