- ✅ Ticket 1.1: Estructura Clean Architecture en backend - ✅ Ticket 1.2: Schemas Zod compartidos - ✅ Ticket 1.3: Refactorización drugs.ts (1362 → 8 archivos modulares) - ✅ Ticket 1.4: Refactorización procedures.ts (3583 → 6 archivos modulares) - ✅ Ticket 1.5: Eliminación de duplicidades (~50 líneas) Cambios principales: - Creada estructura Clean Architecture en backend/src/ - Schemas Zod compartidos en backend/src/shared/schemas/ - Refactorización modular de drugs y procedures - Utilidades genéricas en src/utils/ (filter, validation) - Eliminados scripts obsoletos y documentación antigua - Corregidos errores: QueryClient, import test-error-handling - Build verificado y funcionando correctamente
90 lines
1.3 KiB
SCSS
90 lines
1.3 KiB
SCSS
pre code.hljs {
|
|
display: block;
|
|
overflow-x: auto;
|
|
padding: 1em
|
|
}
|
|
code.hljs {
|
|
padding: 3px 5px
|
|
}
|
|
/*
|
|
Theme: Srcery
|
|
Description: Srcery dark color scheme for highlight.js
|
|
Author: Chen Bin <chen.bin@gmail.com>
|
|
Maintainer: @redguardtoo
|
|
Website: https://srcery-colors.github.io/
|
|
Date: 2021-04-13
|
|
*/
|
|
.hljs {
|
|
background: #1C1B19;
|
|
/* Black */
|
|
color: #FCE8C3/* Bright White */
|
|
|
|
}
|
|
/* Bright White */
|
|
.hljs-subst,
|
|
.hljs-quote,
|
|
.hljs-literal {
|
|
color: #FCE8C3
|
|
}
|
|
/* Bright Blue */
|
|
.hljs-type,
|
|
.hljs-symbol {
|
|
color: #68A8E4
|
|
}
|
|
/* Red */
|
|
.hljs-keyword,
|
|
.hljs-deletion {
|
|
color: #EF2F27
|
|
}
|
|
/* Yellow */
|
|
.hljs-name,
|
|
.hljs-function,
|
|
.hljs-attribute,
|
|
.hljs-selector-attr,
|
|
.hljs-selector-id,
|
|
.hljs-selector-class,
|
|
.hljs-selector-pseudo,
|
|
.hljs-section,
|
|
.hljs-title {
|
|
color: #FBB829
|
|
}
|
|
/* Cyan */
|
|
.hljs-code,
|
|
.hljs-variable,
|
|
.hljs-property,
|
|
.hljs-template-variable,
|
|
.hljs-class {
|
|
color: #0AAEB3
|
|
}
|
|
/* Bright Green */
|
|
.hljs-string,
|
|
.hljs-regexp,
|
|
.hljs-bullet,
|
|
.hljs-addition {
|
|
color: #98BC37
|
|
}
|
|
/* Bright Magenta */
|
|
.hljs-built_in,
|
|
.hljs-params {
|
|
color: #FF5C8F
|
|
}
|
|
/* Blue */
|
|
.hljs-template-tag,
|
|
.hljs-selector-tag {
|
|
color: #2C78BF
|
|
}
|
|
/* Bright Black */
|
|
.hljs-link,
|
|
.hljs-number,
|
|
.hljs-comment,
|
|
.hljs-meta {
|
|
color: #918175
|
|
}
|
|
.hljs-emphasis {
|
|
font-style: italic
|
|
}
|
|
.hljs-strong {
|
|
font-weight: bold
|
|
}
|
|
/* @see https://github.com/srcery-colors/srcery-emacs for reference */
|