zf

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

vs.ex (760B)


      1 
      2 defmodule Makeup.Styles.HTML.VisualStudioStyle do
      3   @moduledoc false
      4 
      5   @styles %{
      6     :error => "border:#FF0000",
      7     :keyword => "#0000ff",
      8     :keyword_type => "#2b91af",
      9     :name_class => "#2b91af",
     10     :string => "#a31515",
     11     :operator_word => "#0000ff",
     12     :comment => "#008000",
     13     :comment_preproc => "#0000ff",
     14     :generic_emph => "italic",
     15     :generic_heading => "bold",
     16     :generic_prompt => "bold",
     17     :generic_strong => "bold",
     18     :generic_subheading => "bold",
     19 
     20   }
     21 
     22   alias Makeup.Styles.HTML.Style
     23 
     24   @style_struct Style.make_style(
     25       short_name: "vs",
     26       long_name: "VisualStudio Style",
     27       background_color: "#ffffff",
     28       highlight_color: "#ffffcc",
     29       styles: @styles)
     30 
     31   def style() do
     32     @style_struct
     33   end
     34 end