aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGustav Eek <gustav.eek@fripost.org>2022-09-16 11:07:18 +0200
committerGustav Eek <gustav.eek@fripost.org>2023-05-30 11:47:11 +0200
commitc671345dd3ca41bbcd56defd254f60f86aee6fa0 (patch)
tree40ab50a6d49b8d47a07dc25e5cc5bcf67d4d7ccf
parentc68bddef3c5522fa4087c6604a444208f6c0c198 (diff)
Style. Inital on Fripost style files
-rw-r--r--tex/fripost.sty61
1 files changed, 61 insertions, 0 deletions
diff --git a/tex/fripost.sty b/tex/fripost.sty
new file mode 100644
index 0000000..67ac5fa
--- /dev/null
+++ b/tex/fripost.sty
@@ -0,0 +1,61 @@
+\NeedsTeXFormat{LaTeX2e}[1994/06/01]
+\ProvidesPackage{fripost}[
+ %% Version goes here
+]
+
+\RequirePackage{lmodern}
+\RequirePackage{fancyhdr}
+\RequirePackage[british, english, swedish]{babel}
+\RequirePackage[utf8]{inputenc}
+\RequirePackage[T1]{fontenc}
+\RequirePackage[usenames, dvipsnames]{color}
+\RequirePackage{helvet}
+\RequirePackage{multicol}
+\RequirePackage{url}
+\RequirePackage{color}
+\RequirePackage{sectsty, soul, enumerate}
+\RequirePackage{calc}
+\RequirePackage{graphicx}
+\RequirePackage{hyperref}
+\RequirePackage{hyphenat}
+\RequirePackage{a4wide}
+
+%% Options
+
+\DeclareOption{standalone}{
+
+}
+
+\DeclareOption{minutes}{
+
+}
+
+\DeclareOption{by-laws}{
+
+}
+
+\ExecuteOptions{standalone}
+
+\ProcessOptions\relax
+
+%% Colours
+
+\definecolor{gray70}{gray}{.3}
+\definecolor{gray50}{gray}{.5}
+\definecolor{gray20}{gray}{.8}
+\definecolor{gray05}{gray}{.95}
+\definecolor{gray00}{gray}{1.0}
+
+\definecolor{blueG}{RGB}{0,76,103}
+\definecolor{greyG}{RGB}{172,160,149}
+\definecolor{orangeG}{RGB}{255,160,35}
+
+\definecolor{grayFri}{gray}{.3}
+
+%% Sections
+
+\allsectionsfont{\sffamily\mdseries\color{grayFri}\centering}
+
+%% End
+
+\endinput