diff --git a/data/_theme.scss b/data/_theme.scss index 9fc2396..bd7c861 100644 --- a/data/_theme.scss +++ b/data/_theme.scss @@ -1 +1,11 @@ // override vars for theming here +$background: rgb(41, 41, 41); +$light-background: #333333; +$text-color: rgb(238, 238, 238); +$primary-color: #dfd39d; +$secondary-color: #e07127; +$form-background-color: rgb(95, 95, 95); +$form-text-color: rgb(255, 255, 255); +$muted-color: rgb(173, 173, 173); // solarized comment text +$primary-button-text-color: rgb(34, 34, 34); +$code-highlight-background: #1d1d1d; \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index c1a7edf..a95353f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -6,8 +6,15 @@ services: container_name: microblogpub user: 1000:1000 restart: always + networks: + - nproxy volumes: - ./data:/app/data - ./app/static:/app/app/static ports: - "8000:8000" + +networks: + nproxy: + external: + name: nproxy