zf

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

paraiso-light.ex (1410B)


      1 
      2 defmodule Makeup.Styles.HTML.ParaisoLightStyle do
      3   @moduledoc false
      4 
      5   @styles %{
      6     :text => "#2f1e2e",
      7     :error => "#ef6155",
      8     :keyword => "#815ba4",
      9     :keyword_namespace => "#5bc4bf",
     10     :keyword_type => "#fec418",
     11     :name => "#2f1e2e",
     12     :name_attribute => "#06b6ef",
     13     :name_class => "#fec418",
     14     :name_constant => "#ef6155",
     15     :name_decorator => "#5bc4bf",
     16     :name_exception => "#ef6155",
     17     :name_function => "#06b6ef",
     18     :name_namespace => "#fec418",
     19     :name_other => "#06b6ef",
     20     :name_tag => "#5bc4bf",
     21     :name_variable => "#ef6155",
     22     :literal => "#f99b15",
     23     :string => "#48b685",
     24     :string_char => "#2f1e2e",
     25     :string_doc => "#8d8687",
     26     :string_escape => "#f99b15",
     27     :string_interpol => "#f99b15",
     28     :number => "#f99b15",
     29     :operator => "#5bc4bf",
     30     :punctuation => "#2f1e2e",
     31     :comment => "#8d8687",
     32     :generic_deleted => "#ef6155",
     33     :generic_emph => "italic",
     34     :generic_heading => "bold #2f1e2e",
     35     :generic_inserted => "#48b685",
     36     :generic_prompt => "bold #8d8687",
     37     :generic_strong => "bold",
     38     :generic_subheading => "bold #5bc4bf",
     39 
     40   }
     41 
     42   alias Makeup.Styles.HTML.Style
     43 
     44   @style_struct Style.make_style(
     45       short_name: "paraiso_light",
     46       long_name: "ParaisoLight Style",
     47       background_color: "#e7e9db",
     48       highlight_color: "#a39e9b",
     49       styles: @styles)
     50 
     51   def style() do
     52     @style_struct
     53   end
     54 end