zf

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

xcode.ex (916B)


      1 
      2 defmodule Makeup.Styles.HTML.XcodeStyle do
      3   @moduledoc false
      4 
      5   @styles %{
      6     :error => "#000000",
      7     :keyword => "#A90D91",
      8     :name => "#000000",
      9     :name_attribute => "#836C28",
     10     :name_builtin => "#A90D91",
     11     :name_builtin_pseudo => "#5B269A",
     12     :name_class => "#3F6E75",
     13     :name_decorator => "#000000",
     14     :name_function => "#000000",
     15     :name_label => "#000000",
     16     :name_tag => "#000000",
     17     :name_variable => "#000000",
     18     :literal => "#1C01CE",
     19     :string => "#C41A16",
     20     :string_char => "#2300CE",
     21     :number => "#1C01CE",
     22     :operator => "#000000",
     23     :comment => "#177500",
     24     :comment_preproc => "#633820",
     25 
     26   }
     27 
     28   alias Makeup.Styles.HTML.Style
     29 
     30   @style_struct Style.make_style(
     31       short_name: "xcode",
     32       long_name: "Xcode Style",
     33       background_color: "#ffffff",
     34       highlight_color: "#ffffcc",
     35       styles: @styles)
     36 
     37   def style() do
     38     @style_struct
     39   end
     40 end