zf

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

abap.ex (550B)


      1 
      2 defmodule Makeup.Styles.HTML.AbapStyle do
      3   @moduledoc false
      4 
      5   @styles %{
      6     :error => "#F00",
      7     :keyword => "#00f",
      8     :name => "#000",
      9     :string => "#5a2",
     10     :number => "#3af",
     11     :operator_word => "#00f",
     12     :comment => "italic #888",
     13     :comment_special => "#888",
     14 
     15   }
     16 
     17   alias Makeup.Styles.HTML.Style
     18 
     19   @style_struct Style.make_style(
     20       short_name: "abap",
     21       long_name: "Abap Style",
     22       background_color: "#ffffff",
     23       highlight_color: "#ffffcc",
     24       styles: @styles)
     25 
     26   def style() do
     27     @style_struct
     28   end
     29 end