;;; styles.el --- Summary
;;; Commentary:
;; Brief description of the file.
;;; Code:
(defface tetramorf-style-face
;;;cosmic face
'((t (:foreground "purple"
:background "black"
:weight ultra-bold
:height 2.0
:slant italic
:underline nil
:box (:line-width 1 :color "blue violet")
:family "Courier New")))
"Инферно стиль с элементами темной эстетики.")
(defface aldebaran-metal-face
'((t (:foreground "silver"
:background "black"
:weight ultra-bold
:height 2.0
:slant normal
:underline t
:box (:line-width 2 :color "gray30" :style released-button)
:family "Consolas")))
"Металлический стиль с ощущением силы и мощи.")
(defface info-poetry-face
'((t (:foreground "lavender"
:background "midnight blue"
:weight light
:height 1.8
:slant italic
:underline t
:box (:line-width 1 :color "thistle4" :style released-button)
:family "Georgia")))
"Поэтический стиль с оттенками ночного неба и загадочности.")
(defface info-poetry-face-1
'((t (:foreground "lavender"
:background "midnight blue"
:weight light
:height 1.3
:slant italic
:underline t
:box (:line-width 1 :color "thistle4" :style released-button)
:family "Georgia")))
"Поэтический стиль с оттенками ночного неба и загадочности.")
(defface xxxface
'((((class color) (min-colors 88) (background light))
:background "darkseagreen2")
(((class color) (min-colors 88) (background dark))
:background "darkolivegreen")
(((class color) (min-colors 16) (background light))
:background "darkseagreen2")
(((class color) (min-colors 16) (background dark))
:background "darkolivegreen")
(((class color) (min-colors 8))
:background "green" :foreground "black")
(t :inverse-video t))
"Basic face for highlighting."
:group 'basic-faces)
(defface evil-error-face
'((t (:foreground "firebrick1"
:background "black"
:weight bold
:slant normal
:underline t
:inverse-video t
:box (:line-width 2 :color "dark red" :style released-button)
:height 2.0
:family "Monospace")))
"Зловещий стиль для отображения ошибок.")
(defface cyberpunk-success-face
'((t (:foreground "lime"
:background "black"
:weight bold
:slant normal
:underline t
:box (:line-width 2 :color "cyan" :style solid)
:height 2.5
:family "Courier New")))
"Киберпанковский стиль для успешных сообщений.")
(defface cyberpunk-unsuccess-face
'((t (:foreground "red"
:background "black"
:weight bold
:slant normal
:underline t
:box (:line-width 2 :color "cyan" :style solid)
:height 2.5
:family "Courier New")))
"Киберпанковский стиль для успешных сообщений.")
(defface cyberpunk-last-value-face
'((t (:foreground "lime"
:background "black"
:weight bold
:slant italic
:box (:line-width 3 :color "lime" :style released-button)
:height 2.4
:family "Courier New")))
"Cyberpunk style for displaying the last value.")
(provide 'styles)
;;; styles.el ends here
;;; styles.el --- Summary