zf

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

arduino.ex (804B)


      1 
      2 defmodule Makeup.Styles.HTML.ArduinoStyle do
      3   @moduledoc false
      4 
      5   @styles %{
      6     :error => "#a61717",
      7     :keyword => "#728E00",
      8     :keyword_constant => "#00979D",
      9     :keyword_pseudo => "#00979D",
     10     :keyword_reserved => "#00979D",
     11     :keyword_type => "#00979D",
     12     :name => "#434f54",
     13     :name_builtin => "#728E00",
     14     :name_function => "#D35400",
     15     :name_other => "#728E00",
     16     :string => "#7F8C8D",
     17     :number => "#8A7B52",
     18     :operator => "#728E00",
     19     :comment => "#95a5a6",
     20     :comment_preproc => "#728E00",
     21 
     22   }
     23 
     24   alias Makeup.Styles.HTML.Style
     25 
     26   @style_struct Style.make_style(
     27       short_name: "arduino",
     28       long_name: "Arduino Style",
     29       background_color: "#ffffff",
     30       highlight_color: "#ffffcc",
     31       styles: @styles)
     32 
     33   def style() do
     34     @style_struct
     35   end
     36 end