summaryrefslogtreecommitdiff
path: root/src/stylesheets
diff options
context:
space:
mode:
authorLostDragonist <lost.dragonist@gmail.com>2018-12-11 20:37:59 -0600
committerLostDragonist <lost.dragonist@gmail.com>2018-12-11 20:37:59 -0600
commit9b9a1f435e33074e6573317ea947c617be484190 (patch)
tree8aad2a1db9745deca53a1cda5852a44b3d8a45d1 /src/stylesheets
parent7f82ffa6645d4c1c327ed7a65e2084386bd7210b (diff)
Add v1.1 Paper Automata theme by 6788
Diffstat (limited to 'src/stylesheets')
-rw-r--r--src/stylesheets/Paper Automata.qss939
-rw-r--r--src/stylesheets/Paper/Automata/Arrows/down.svg97
-rw-r--r--src/stylesheets/Paper/Automata/Arrows/left.svg97
-rw-r--r--src/stylesheets/Paper/Automata/Arrows/right.svg97
-rw-r--r--src/stylesheets/Paper/Automata/Arrows/up.svg97
-rw-r--r--src/stylesheets/Paper/Automata/Toolbar/archives.svg99
-rw-r--r--src/stylesheets/Paper/Automata/Toolbar/executables.svg99
-rw-r--r--src/stylesheets/Paper/Automata/Toolbar/help.svg128
-rw-r--r--src/stylesheets/Paper/Automata/Toolbar/instances.svg98
-rw-r--r--src/stylesheets/Paper/Automata/Toolbar/nexus.svg122
-rw-r--r--src/stylesheets/Paper/Automata/Toolbar/problems.svg132
-rw-r--r--src/stylesheets/Paper/Automata/Toolbar/profiles.svg112
-rw-r--r--src/stylesheets/Paper/Automata/Toolbar/settings.svg95
-rw-r--r--src/stylesheets/Paper/Automata/Toolbar/tools.svg117
-rw-r--r--src/stylesheets/Paper/Automata/Toolbar/update.svg141
-rw-r--r--src/stylesheets/Paper/Automata/background.svg99
-rw-r--r--src/stylesheets/Paper/Automata/backup.svg126
-rw-r--r--src/stylesheets/Paper/Automata/branch.svg99
-rw-r--r--src/stylesheets/Paper/Automata/collapsed.svg97
-rw-r--r--src/stylesheets/Paper/Automata/cross.svg94
-rw-r--r--src/stylesheets/Paper/Automata/dots.svg111
-rw-r--r--src/stylesheets/Paper/Automata/expanded.svg104
-rw-r--r--src/stylesheets/Paper/Automata/folder.svg94
-rw-r--r--src/stylesheets/Paper/Automata/heart.svg111
-rw-r--r--src/stylesheets/Paper/Automata/refresh.svg103
-rw-r--r--src/stylesheets/Paper/Automata/restore-alt.svg126
-rw-r--r--src/stylesheets/Paper/Automata/restore.svg94
-rw-r--r--src/stylesheets/Paper/Automata/run.svg109
-rw-r--r--src/stylesheets/Paper/Automata/shortcut.svg94
-rw-r--r--src/stylesheets/Paper/Automata/sort.svg125
30 files changed, 4056 insertions, 0 deletions
diff --git a/src/stylesheets/Paper Automata.qss b/src/stylesheets/Paper Automata.qss
new file mode 100644
index 00000000..748e589e
--- /dev/null
+++ b/src/stylesheets/Paper Automata.qss
@@ -0,0 +1,939 @@
+/* v1.1 Paper Automata by 6788-00 */
+/* https://6788-00.tumblr.com/ */
+
+/* Color Palette */
+/* Background - Main | #CDC8B0 */
+/* Background - Content | #DAD4BB */
+/* Hover | #B4AF9A */
+/* Selected | #4E4B42 */
+/* Accent | #CD664D */
+
+/* All */
+
+* {
+ color: #4E4B42;
+ font-size: 13px;
+}
+
+/* Main Window */
+
+QMainWindow,
+QDialog {
+ /* most windows */
+ background: url(./Paper/Automata/background.svg);
+}
+
+QWidget:disabled {
+ /* disabled parts of the window like the update button when there are no updates */
+ background: url(./Paper/Automata/background.svg);
+ color: #B4AF9A;
+}
+
+QSplitter {
+ /* for resizing the left pane, right pane, or log console */
+ height: 2px;
+ width: 8px;
+}
+
+QSplitter::handle:horizontal {
+ /* horizontal handle */
+ background: transparent;
+}
+
+QSplitter::handle {
+ /* actual visible handle */
+ background: #4E4B42;
+ margin-top: 6px;
+}
+
+QAbstractItemView {
+ /* left and right pane container */
+ background: #DAD4BB;
+ alternate-background-color: transparent;
+ show-decoration-selected: 1;
+ selection-background-color: #B4AF9A;
+ selection-color: #4E4B42;
+}
+
+QAbstractItemView::item:hover {
+ /* rows on left and right pane when moused-over */
+ background: #B4AF9A;
+}
+
+QAbstractItemView::item:selected {
+ /* rows on left and right pane when clicked */
+ background: #4E4B42;
+ color: #CDC8B0;
+}
+
+QAbstractScrollArea::corner {
+ /* corner between where a vertical scrollbar and a horizontal scrollbar meet */
+ background: #4E4B42;
+ border: 2px solid #4E4B42;
+ margin: 0px -2px -2px 0px;
+}
+
+/* Toolbar */
+
+QToolBar {
+ /* top toolbar; */
+ border-bottom: 2px solid #4E4B42;
+ margin-left: 12px;
+ margin-right: 12px;
+}
+
+QToolBar QWidget {
+ background: transparent;
+ margin: 0px;
+}
+
+QToolButton {
+ /* toolbar buttons */
+ padding: 4px 6px;
+ border: 2px solid transparent;
+ margin: 4px 4px 0px 4px;
+}
+
+QToolButton:hover,
+QToolButton:pressed {
+ background: #B4AF9A;
+ border-bottom: 2px solid #4E4B42;
+}
+
+QToolButton:menu-indicator {
+ /* expandable indicator on toolbar buttons */
+ image: url(./Paper/Automata/Arrows/down.svg);
+ margin: 4px;
+}
+
+QToolButton QMenu {
+ /* toolbar button dropdown menus */
+ margin: 0px;
+}
+
+/* Toolbar Button Icons */
+
+#actionChange_Game {
+ qproperty-icon: url(./Paper/Automata/Toolbar/instances.svg);
+}
+
+#actionInstallMod {
+ qproperty-icon: url(./Paper/Automata/Toolbar/archives.svg);
+}
+
+#actionNexus {
+ qproperty-icon: url(./Paper/Automata/Toolbar/nexus.svg);
+}
+
+#actionAdd_Profile {
+ qproperty-icon: url(./Paper/Automata/Toolbar/profiles.svg);
+}
+
+#actionModify_Executables {
+ qproperty-icon: url(./Paper/Automata/Toolbar/executables.svg);
+}
+
+#actionTool {
+ qproperty-icon: url(./Paper/Automata/Toolbar/tools.svg);
+}
+
+#actionSettings {
+ qproperty-icon: url(./Paper/Automata/Toolbar/settings.svg);
+}
+
+#actionProblems {
+ qproperty-icon: url(./Paper/Automata/Toolbar/problems.svg);
+}
+
+#actionUpdate {
+ qproperty-icon: url(./Paper/Automata/Toolbar/update.svg);
+}
+
+#actionHelp {
+ qproperty-icon: url(./Paper/Automata/Toolbar/help.svg);
+}
+
+/* Left Pane & File Trees */
+
+QTreeView {
+ /* left pane and right pane under QAbstractItemView*/
+ border: none;
+}
+
+QTreeView::branch:has-siblings:!adjoins-item{
+ background: none;
+}
+
+QTreeView::branch:closed:has-children:has-siblings,
+QTreeView::branch:closed:has-children:!has-siblings {
+ /* a branch that is closed */
+ image: url(./Paper/Automata/collapsed.svg) center no-repeat;
+}
+
+QTreeView::branch:open:has-children:has-siblings,
+QTreeView::branch:open:has-children:!has-siblings {
+ /* a branch that is open */
+ image: url(./Paper/Automata/expanded.svg) center no-repeat;
+}
+
+QTreeView::branch:hover {
+ background: #B4AF9A;
+}
+
+QTreeView::branch:selected {
+ /* rows on the left pane when clicked (below QAbstractItemView, i.e. to the left of the checkbox) */
+ background: #4E4B42;
+ color: #CDC8B0;
+}
+
+QTreeView::item:selected {
+ /* entry on left pane when clicked */
+ background: #4E4B42;
+ color: #CDC8B0;
+}
+
+QListView {
+ /* saves window */
+ border: none;
+}
+
+QListView::item:hover {
+ /* uncertain, assumed: rows on the saves window when moused-over */
+ background: #B4AF9A;
+}
+
+QListView::item:selected {
+ /*uncertain, assumed: rows on the saves window when clicked */
+ background: #4E4B42;
+ color: #FFFFFF;
+}
+
+QTextEdit {
+ /* large text fields */
+ background: #DAD4BB;
+ border: none;
+}
+
+QWebView {
+ /* Nexus Info window */
+ background: #DAD4BB;
+ border-radius: 0px;
+}
+
+/* Group Boxes */
+
+QGroupBox {
+ /* boxes that group multiple elements together (e.g. on Settings) */
+ padding: 24px 4px;
+ border: none;
+}
+
+QGroupBox::title {
+ /* title of group boxes */
+ background: transparent;
+ subcontrol-origin: padding;
+ subcontrol-position: top left;
+ padding: 8px;
+}
+
+/* Text Fields */
+
+QLineEdit {
+ /* text fields like NameFilter and directory fields */
+ background: #DAD4BB;
+ min-height: 14px;
+ padding: 2px;
+ border: 2px solid #DAD4BB;
+ border-radius: 0px;
+}
+
+QLineEdit:hover {
+ /* text fields when moused-over */
+ background: 2px solid #B4AF9A;
+ border: 2px solid #B4AF9A;
+}
+
+/* Most Dropdown Menus */
+
+QComboBox {
+ /* dropdown menus */
+ background: #DAD4BB;
+ min-height: 20px;
+ padding-left: 5px;
+ border: 2px solid #DAD4BB;
+ border-radius: 0px;
+ margin: 4px 0px;
+}
+
+QComboBox:hover {
+ /* dropdown menus when moused-over */
+ background: 2px solid #B4AF9A;
+ border: 2px solid #B4AF9A;
+}
+
+QComboBox:on {
+ /* dropdown menus when expanded */
+ background: #4E4B42;
+ color: #DAD4BB;
+ border: 2px solid #4E4B42;
+}
+
+QComboBox::drop-down {
+ /* area for expandable indicator */
+ width: 20px;
+ subcontrol-origin: padding;
+ subcontrol-position: top right;
+ border: none;
+}
+
+QComboBox QAbstractItemView {
+ /* actual menu that expands */
+ background: #DAD4BB;
+ border: 2px solid #CDC8B0;
+ border-radius: 0px;
+}
+
+QComboBox::down-arrow {
+ /* expandable indicator */
+ image: url(./Paper/Automata/Arrows/down.svg);
+}
+
+/* Most Buttons */
+
+QPushButton {
+ /* most buttons */
+ background: #B4AF9A;
+ min-height: 20px;
+ padding: 2px 12px;
+ border-radius: 0px;
+}
+
+QPushButton:disabled {
+ /* most buttons when disabled */
+ background: transparent;
+ border: 2px solid #DAD4BB;
+}
+
+QPushButton:hover {
+ /* most buttons when hovered */
+ background: #DAD4BB;
+}
+
+QPushButton:pressed {
+ /* most buttons when clicked */
+ background: #4E4B42;
+ color: #DAD4BB;
+}
+
+QPushButton::menu-indicator {
+ /* expandable indicator for most buttons */
+ subcontrol-position: right center;
+ image: url(./Paper/Automata/Arrows/down.svg);
+ padding: 2px;
+ margin: 4px 4px;
+}
+
+/* Icons */
+
+QPushButton#listOptionsBtn {
+ /* Options button */
+ qproperty-icon: url(./Paper/Automata/dots.svg);
+ qproperty-iconSize: 16px;
+ padding-left: 2px;
+}
+
+QPushButton#openFolderMenu {
+ /* Open Folder button */
+ qproperty-icon: url(./Paper/Automata/folder.svg);
+ qproperty-iconSize: 14px;
+ padding-left: 4px;
+}
+
+QPushButton#restoreModsButton,
+QPushButton#restoreButton {
+ /* Restore Backup buttons */
+ qproperty-icon: url(./Paper/Automata/restore.svg);
+ qproperty-iconSize: 14px;
+}
+
+QPushButton#saveModsButton,
+QPushButton#saveButton {
+ /* Backup buttons */
+ qproperty-icon: url(./Paper/Automata/backup.svg);
+ qproperty-iconSize: 14px;
+}
+
+QPushButton#bossButton {
+ /* Sort button */
+ qproperty-icon: url(./Paper/Automata/sort.svg);
+ qproperty-iconSize: 14px;
+}
+
+QPushButton#linkButton {
+ /* Shortcuts button */
+ qproperty-icon: url(./Paper/Automata/shortcut.svg);
+ qproperty-iconSize: 14px;
+}
+
+QPushButton#btnRefreshData,
+QPushButton#refreshButton {
+ /* Refresh buttons */
+ qproperty-icon: url(./Paper/Automata/refresh.svg);
+ qproperty-iconSize: 14px;
+}
+
+QPushButton#endorseBtn {
+ /* Endorse button on the Nexus Info tab of the Information window */
+ qproperty-icon: url(./Paper/Automata/heart.svg);
+ qproperty-iconSize: 14px;
+}
+
+QPushButton#clearCacheButton {
+ /* Clear Cache button on the Nexus tab of the Settings window */
+ qproperty-icon: url(./Paper/Automata/cross.svg);
+ qproperty-iconSize: 14px;
+}
+
+QToolButton#deactivateESP,
+QToolButton#activateESP {
+ /* activate and deactivate ESP buttons */
+ background: #DAD4BB;
+}
+
+QToolButton:hover#deactivateESP,
+QToolButton:hover#activateESP {
+ /* activate and deactivate ESP buttons when moused-over */
+ background: #B4AF9A;
+}
+
+QToolButton#deactivateESP {
+ /* icon for the deactivate ESP button */
+ qproperty-icon: url(./Paper/Automata/backup.svg);
+}
+
+QToolButton#activateESP {
+ /* icon for the activate ESP button */
+ qproperty-icon: url(./Paper/Automata/restore-alt.svg);
+}
+
+/* Run button */
+
+QPushButton#startButton {
+ /* Run button */
+ background: #4E4B42;
+ color: #DAD4BB;
+ qproperty-icon: url(./Paper/Automata/run.svg);
+ qproperty-iconSize: 30px;
+ padding: 6px;
+}
+
+QPushButton:hover#startButton {
+ /* Run button when moused-over*/
+ background: #B4AF9A;
+ color: #4E4B42;
+}
+
+/* Scroll Bars */
+
+/* Horizontal */
+
+QScrollBar:horizontal {
+ /* horizontal scroll bar */
+ background: #DAD4BB;
+ height: 18px;
+ border: 2px solid #DAD4BB;
+ margin: 0px 23px -2px 23px;
+}
+
+QScrollBar::handle:horizontal {
+ /* handle for horizontal scroll bars */
+ background: #4E4B42;
+ min-width: 32px;
+ margin: 2px;
+}
+
+QScrollBar::add-line:horizontal {
+ /* scroll right button */
+ background: #DAD4BB;
+ image: url(./Paper/Automata/Arrows/right.svg);
+ width: 23px;
+ subcontrol-position: right;
+ subcontrol-origin: margin;
+ border: 2px solid #CDC8B0;
+ margin: 0px -2px -2px 0px;
+}
+
+QScrollBar::sub-line:horizontal {
+ /* scroll left button */
+ background: #DAD4BB;
+ image: url(./Paper/Automata/Arrows/left.svg);
+ width: 23px;
+ subcontrol-position: left;
+ subcontrol-origin: margin;
+ border: 2px solid #CDC8B0;
+ margin: 0px 0px -2px -2px;
+}
+
+/* Vertical */
+
+QScrollBar:vertical {
+ /* vertical scroll bar */
+ background: #DAD4BB;
+ width: 18px;
+ border: 2px solid #CDC8B0;
+ margin: 23px -2px 23px 0px;
+}
+
+QScrollBar::handle:vertical {
+ /* handle for vertical scroll bars */
+ background: #4E4B42;
+ min-height: 32px;
+ margin: 2px;
+}
+
+QScrollBar::add-line:vertical {
+ /* scroll down button */
+ background: #DAD4BB;
+ image: url(./Paper/Automata/Arrows/down.svg);
+ height: 23px;
+ subcontrol-position: bottom;
+ subcontrol-origin: margin;
+ border: 2px solid #CDC8B0;
+ border-bottom-right-radius: 0px;
+ margin: 0px -2px -2px 0px;
+}
+
+QScrollBar::sub-line:vertical {
+ /* scroll up button */
+ background: #B4AF9A;
+ image: url(./Paper/Automata/Arrows/up.svg);
+ height: 23px;
+ subcontrol-position: top;
+ subcontrol-origin: margin;
+ border: 2px solid #CDC8B0;
+ border-top-right-radius: 0px;
+ margin: -2px -2px 0px 0px;
+}
+
+/* Combined */
+
+QScrollBar::handle:horizontal:hover,
+QScrollBar::handle:vertical:hover,
+QScrollBar::add-line:horizontal:hover,
+QScrollBar::sub-line:horizontal:hover,
+QScrollBar::add-line:vertical:hover,
+QScrollBar::sub-line:vertical:hover {
+ /* buttons and handles when moused-over */
+ background: #B4AF9A;
+}
+
+QScrollBar::handle:horizontal:pressed,
+QScrollBar::handle:vertical:pressed,
+QScrollBar::add-line:horizontal:pressed,
+QScrollBar::sub-line:horizontal:pressed,
+QScrollBar::add-line:vertical:pressed,
+QScrollBar::sub-line:vertical:pressed {
+ /* buttons and handles when clicked */
+ background: #4E4B42;
+}
+
+QScrollBar::add-page:horizontal,
+QScrollBar::sub-page:horizontal,
+QScrollBar::add-page:vertical,
+QScrollBar::sub-page:vertical {
+ /* area on scroll bars where clicking it scrolls to where you clicked */
+ background: transparent;
+}
+
+/* Header Rows */
+
+QHeaderView {
+ /* header row (i.e. Mod Name, Flags, Category, etc.) */
+ background: #B4AF9A;
+}
+
+QHeaderView::section {
+ /* each section on the header row (i.e. Mod name is one section and Flags another) */
+ background: #B4AF9A;
+ height: 22px;
+ padding: 0px 5px;
+ border: 0px;
+ border-bottom: 2px solid #CDC8B0;
+ border-right: 2px solid #CDC8B0;
+}
+
+QHeaderView::section:hover {
+ /* a section on a header row when hovered */
+ background: #B4AF9A;
+}
+
+QHeaderView::up-arrow {
+ /* ascending sort indicator */
+ image: url(./Paper/Automata/Arrows/up.svg);
+ padding-right: 4px;
+ height: 10px;
+ width: 10px;
+}
+
+QHeaderView::down-arrow {
+ /* descending sort indicator */
+ image: url(./Paper/Automata/Arrows/down.svg);
+ padding-right: 4px;
+ height: 10px;
+ width: 10px;
+}
+
+QHeaderView::section:last {
+ margin-right: -2px;
+}
+
+/* Right Click Menus, Toolbar Dropdown Menus, & Tooltips */
+
+QMenu {
+ /* right click menu */
+ background: #DAD4BB;
+ border: 2px solid #CDC8B0;
+}
+
+QMenu::item {
+ /* rows on right click menus */
+ background: #DAD4BB;
+ padding: 5px 20px 5px 24px;
+}
+
+QMenu::item:selected {
+ /* rows on right click menus when moused-over (i dunno) */
+ background: #B4AF9A;
+ border: none;
+}
+
+QMenu::item:disabled {
+ /* unavailable rows on right click menus */
+ background: #CDC8B0;
+ color: #B4AF9A;
+}
+
+QMenu::separator {
+ /* seperators on right click menus */
+ height: 2px;
+ background: #CDC8B0;
+}
+
+QMenu::icon {
+ /* area for icons on right click menus */
+ padding: 4px;
+}
+
+QMenu::right-arrow {
+ /* submenu indicator */
+ image: url(./Paper/Automata/Arrows/right.svg);
+ padding-right: 5px;
+}
+
+QMenu QPushButton {
+ /* Change Categories and Primary Categories buttons */
+ background: #DAD4BB;
+ padding: 2px 24px;
+ text-align: left;
+ border: none;
+}
+
+QMenu QPushButton:hover {
+ /* Change Categories and Primary Categories buttons when moused-over */
+ background: #B4AF9A;
+ border: none;
+}
+
+QMenu QCheckBox {
+ /* checkboxes on right click menus (change categories)*/
+ background: #DAD4BB;
+ padding: 2px 6px;
+}
+
+QMenu QCheckBox:hover {
+ /* checkboxes on right click menus when moused-over (change categories) */
+ background: #B4AF9A;
+}
+
+QMenu QRadioButton {
+ /* radio buttons on right click menus (primary categories) */
+ background: #DAD4BB;
+ padding: 2px 6px;
+}
+
+QToolTip {
+ /* all tooltips */
+ background: #DAD4BB;
+ border: 2px solid #CDC8B0;
+}
+
+/* Progress Bars (Downloads) */
+
+QProgressBar {
+ /* progress bars when downloading */
+ background: #DAD4BB;
+ text-align: center;
+ border: 0px;
+ margin: 0px 10px;
+}
+
+QProgressBar::chunk {
+ /* the loading part that moves on progress bars */
+ background: #CD664D;
+}
+
+/* Right Pane and Tab Bars */
+
+QTabWidget::pane {
+ /* right pane */
+ top: 1px;
+ padding: 2px 2px 3px 2px;
+ border-top: 2px solid #4E4B42;
+}
+
+QTabWidget::tab-bar {
+ /* tabs */
+ alignment: center;
+}
+
+QTabBar::tab {
+ /* a tab */
+ background: #B4AF9A;
+ padding: 4px 1em;
+ border: 2px solid #DAD4BB;
+ margin: 3px 1px;
+}
+
+QTabBar::tab:!selected {
+ /* an unselected tab */
+ background: #B4AF9A;
+ border: 2px solid #B4AF9A;
+}
+
+QTabBar::tab:disabled {
+ /* An unavailable tab */
+ background: transparent;
+ color: #B4AF9A;
+ border: transparent;
+}
+
+QTabBar::tab:selected {
+ /* a clicked tab */
+ color: #CDC8B0;
+ background: #4E4B42;
+ border: 2px solid #4E4B42;
+}
+
+QTabBar::tab:hover {
+ /* a tab when hovered */
+ background: #DAD4BB;
+ color: #4E4B42;
+ border: 2px solid #DAD4BB;
+}
+
+QTabBar QToolButton {
+ /* buttons to scroll between more tabs on a tab bar */
+ background: #CD664D;
+ padding: 0px;
+ margin: 3px;
+}
+
+QTabBar QToolButton:disabled {
+ /* buttons to scroll on a tab bar when it's unavailable */
+ background: transparent;
+ border: 2px solid transparent;
+}
+
+QLCDNumber {
+ /* LCD number on the Conflicts tab */
+ background: #DAD4BB;
+ color: #CD664D;
+ border: none;
+}
+
+/* Tables (Configure Mod Categories) */
+
+QTableView {
+ /* tables */
+ gridline-color: #CDC8B0;
+ border: 0px;
+}
+
+/* Checkboxes */
+
+QCheckBox::indicator {
+ /* a checkbox */
+ width: 12px;
+ height: 12px;
+}
+
+QCheckBox::indicator:disabled,
+QRadioButton::indicator:disabled {
+ /* a checkbox that is disabled */
+ background: none;
+ border: 2px solid #B4AF9A;
+}
+
+QTreeView::indicator:unchecked,
+QCheckBox::indicator:unchecked,
+QGroupBox::indicator:unchecked,
+QRadioButton::indicator:unchecked {
+ /* a checkbox when unchecked */
+ border: 2px solid #4E4B42;
+}
+
+QCheckBox::indicator:unchecked:hover,
+QRadioButton::indicator:unchecked:hover {
+ /* a checkbox that is unchecked when moused-over */
+ background: #B4AF9A;
+}
+
+QTreeView::indicator:unchecked:selected,
+QRadioButton::indicator:unchecked:selected {
+ /* a checkbox that is unchecked when clicked */
+ image: url(./Paper/Automata/unchecked-alt.svg);
+}
+
+QTreeView::indicator:checked,
+QCheckBox::indicator:checked,
+QGroupBox::indicator:checked,
+QRadioButton::indicator:checked {
+ /* a checkbox when checked */
+ background: #CD664D;
+ border: 2px solid #CD664D;
+}
+
+QCheckBox::indicator:checked:hover,
+QRadioButton::indicator:checked:hover {
+ /* a checkbox that is checked when moused-over */
+ border: 2px solid #4E4B42;
+}
+
+/* Spinboxes */
+
+QSpinBox,
+QDoubleSpinBox {
+ /* usually boxes for selecting numbers */
+ min-height: 24px;
+ min-width: 60px;
+ background: #DAD4BB;
+ padding: 0px 2px;
+ border: 2px solid #CDC8B0;
+ margin: 0px -4px;
+}
+
+QSpinBox::up-button,
+QDoubleSpinBox::up-button {
+ /* up button on spinboxes */
+ min-height: 28px;
+ min-width: 18px;
+ subcontrol-position: center right;
+ border: 2px solid #CDC8B0;
+}
+
+QSpinBox::up-arrow,
+QDoubleSpinBox::up-arrow {
+ /* arrow for the up button */
+ image: url(./Paper/Automata/Arrows/up.svg);
+}
+
+QSpinBox::up-button:hover,
+QDoubleSpinBox::up-button:hover {
+ /* up button on spinboxes when moused-over */
+ background: #B4AF9A;
+}
+
+QSpinBox::down-button,
+QDoubleSpinBox::down-button {
+ /* down button on spinboxes */
+ min-height: 28px;
+ min-width: 18px;
+ subcontrol-position: center left;
+ border: 2px solid #CDC8B0;
+}
+
+QSpinBox::down-arrow,
+QDoubleSpinBox::down-arrow {
+ /* arrow for the up button */
+ image: url(./Paper/Automata/Arrows/down.svg);
+}
+
+QSpinBox::down-button:hover,
+QDoubleSpinBox::down-button:hover {
+ /* down button on spinboxes when moused-over */
+ background: #B4AF9A;
+}
+
+/* Sliders */
+
+QSlider::groove {
+ /* sliders */
+ height: 0px;
+ border: 1px solid #B4AF9A;
+}
+
+QSlider::handle {
+ /* slider handles */
+ background: #DAD4BB;
+ border: 2px solid #4E4B42;
+ border-radius: 0px;
+ margin: -10px;
+}
+
+QSlider::handle:hover {
+ /* Slider handles when moused-over */
+ background: #4E4B42;
+}
+
+/* Downloads Tab */
+
+QWidget#downloadTab QAbstractScrollArea,
+DownloadListWidget {
+ /* background of the entire downloads tab */
+ background: transparent;
+}
+
+DownloadListWidget QFrame,
+DownloadListWidgetCompact,
+DownloadListWidgetCompact QLabel {
+ /* an entry on the Downloads tab */
+ background: #DAD4BB;
+}
+
+DownloadListWidget QFrame#frame {
+ /* outer box of an entry on the Downloads tab */
+ border: 2px solid #DAD4BB;
+}
+
+DownloadListWidget QLabel#installLabel {
+ /* installed/done label */
+ color: none;
+}
+
+/* Compact Downloads View */
+
+DownloadListWidgetCompact,
+DownloadListWidgetCompact QLabel {
+ /* an entry on the Downloads tab */
+ background: #DAD4BB;
+}
+
+/* Categories Filter */
+
+QPushButton#displayCategoriesBtn {
+ /* Filter button */
+ min-width: 12px;
+}
+
+QTreeWidget#categoriesList {
+ /* Categories panel */
+ min-width: 200px;
+ margin-bottom: 4px;
+}
+
+QGroupBox#categoriesGroup {
+ /* Categories group box */
+ padding-bottom: 0px;
+}
+
+/* For the Glory of Mankind */ \ No newline at end of file
diff --git a/src/stylesheets/Paper/Automata/Arrows/down.svg b/src/stylesheets/Paper/Automata/Arrows/down.svg
new file mode 100644
index 00000000..30f13836
--- /dev/null
+++ b/src/stylesheets/Paper/Automata/Arrows/down.svg
@@ -0,0 +1,97 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="8"
+ height="8"
+ viewBox="0 0 8 8"
+ version="1.1"
+ id="svg8"
+ inkscape:export-filename="D:\Bethesda Game Modding\Mod Organizer 2\stylesheets\Paper\Dark\dots.png"
+ inkscape:export-xdpi="307.20001"
+ inkscape:export-ydpi="307.20001"
+ inkscape:version="0.92.1 r15371"
+ sodipodi:docname="down.svg">
+ <defs
+ id="defs2" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#505050"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="116.25"
+ inkscape:cx="4"
+ inkscape:cy="4"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer25"
+ showgrid="false"
+ units="px"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-page="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true"
+ inkscape:snap-bbox-edge-midpoints="true"
+ inkscape:snap-bbox-midpoints="true"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:window-width="1920"
+ inkscape:window-height="1027"
+ inkscape:window-x="-8"
+ inkscape:window-y="-8"
+ inkscape:window-maximized="1"
+ inkscape:snap-center="true"
+ inkscape:snap-object-midpoints="true"
+ inkscape:measure-start="18.8975,12.498"
+ inkscape:measure-end="20,12.498"
+ inkscape:snap-intersection-paths="true"
+ inkscape:object-paths="true"
+ inkscape:snap-smooth-nodes="true"
+ inkscape:snap-midpoints="true"
+ inkscape:snap-global="true">
+ <sodipodi:guide
+ position="4,4"
+ orientation="1,0"
+ id="guide4039"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="4,4"
+ orientation="0,1"
+ id="guide3935"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer25"
+ inkscape:label="Content"
+ transform="translate(0,-12)">
+ <path
+ style="display:inline;opacity:1;fill:#4d4a41;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:212.1320343;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.93939996;stroke-opacity:1;paint-order:markers stroke fill"
+ d="M 0,15 2,17 4,19 6,17 8,15 6,13 4,15 2,13 Z"
+ id="rect3900-0"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
diff --git a/src/stylesheets/Paper/Automata/Arrows/left.svg b/src/stylesheets/Paper/Automata/Arrows/left.svg
new file mode 100644
index 00000000..97094916
--- /dev/null
+++ b/src/stylesheets/Paper/Automata/Arrows/left.svg
@@ -0,0 +1,97 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="8"
+ height="8"
+ viewBox="0 0 8 8"
+ version="1.1"
+ id="svg8"
+ inkscape:export-filename="D:\Bethesda Game Modding\Mod Organizer 2\stylesheets\Paper\Dark\dots.png"
+ inkscape:export-xdpi="307.20001"
+ inkscape:export-ydpi="307.20001"
+ inkscape:version="0.92.1 r15371"
+ sodipodi:docname="left.svg">
+ <defs
+ id="defs2" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#505050"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="116.25"
+ inkscape:cx="4"
+ inkscape:cy="4"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer25"
+ showgrid="false"
+ units="px"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-page="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true"
+ inkscape:snap-bbox-edge-midpoints="true"
+ inkscape:snap-bbox-midpoints="true"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:window-width="1920"
+ inkscape:window-height="1027"
+ inkscape:window-x="-8"
+ inkscape:window-y="-8"
+ inkscape:window-maximized="1"
+ inkscape:snap-center="true"
+ inkscape:snap-object-midpoints="true"
+ inkscape:measure-start="18.8975,12.498"
+ inkscape:measure-end="20,12.498"
+ inkscape:snap-intersection-paths="true"
+ inkscape:object-paths="true"
+ inkscape:snap-smooth-nodes="true"
+ inkscape:snap-midpoints="true"
+ inkscape:snap-global="true">
+ <sodipodi:guide
+ position="4,4"
+ orientation="1,0"
+ id="guide4039"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="4,4"
+ orientation="0,1"
+ id="guide3935"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer25"
+ inkscape:label="Content"
+ transform="translate(0,-12)">
+ <path
+ style="display:inline;opacity:1;fill:#4d4a41;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:212.1320343;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.93939996;stroke-opacity:1;paint-order:markers stroke fill"
+ d="M 5,20 3,18 1,16 3,14 5,12 7,14 5,16 7,18 Z"
+ id="rect3900-0"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
diff --git a/src/stylesheets/Paper/Automata/Arrows/right.svg b/src/stylesheets/Paper/Automata/Arrows/right.svg
new file mode 100644
index 00000000..5eaa99cf
--- /dev/null
+++ b/src/stylesheets/Paper/Automata/Arrows/right.svg
@@ -0,0 +1,97 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="8"
+ height="8"
+ viewBox="0 0 8 8"
+ version="1.1"
+ id="svg8"
+ inkscape:export-filename="D:\Bethesda Game Modding\Mod Organizer 2\stylesheets\Paper\Dark\dots.png"
+ inkscape:export-xdpi="307.20001"
+ inkscape:export-ydpi="307.20001"
+ inkscape:version="0.92.1 r15371"
+ sodipodi:docname="right.svg">
+ <defs
+ id="defs2" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#505050"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="116.25"
+ inkscape:cx="4"
+ inkscape:cy="4"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer25"
+ showgrid="false"
+ units="px"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-page="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true"
+ inkscape:snap-bbox-edge-midpoints="true"
+ inkscape:snap-bbox-midpoints="true"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:window-width="1920"
+ inkscape:window-height="1027"
+ inkscape:window-x="-8"
+ inkscape:window-y="-8"
+ inkscape:window-maximized="1"
+ inkscape:snap-center="true"
+ inkscape:snap-object-midpoints="true"
+ inkscape:measure-start="18.8975,12.498"
+ inkscape:measure-end="20,12.498"
+ inkscape:snap-intersection-paths="true"
+ inkscape:object-paths="true"
+ inkscape:snap-smooth-nodes="true"
+ inkscape:snap-midpoints="true"
+ inkscape:snap-global="true">
+ <sodipodi:guide
+ position="4,4"
+ orientation="1,0"
+ id="guide4039"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="4,4"
+ orientation="0,1"
+ id="guide3935"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer25"
+ inkscape:label="Content"
+ transform="translate(0,-12)">
+ <path
+ style="display:inline;opacity:1;fill:#4d4a41;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:212.1320343;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.93939996;stroke-opacity:1;paint-order:markers stroke fill"
+ d="M 3,20 5,18 7,16 5,14 3,12 1,14 3,16 1,18 Z"
+ id="rect3900-0"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
diff --git a/src/stylesheets/Paper/Automata/Arrows/up.svg b/src/stylesheets/Paper/Automata/Arrows/up.svg
new file mode 100644
index 00000000..5fa569f4
--- /dev/null
+++ b/src/stylesheets/Paper/Automata/Arrows/up.svg
@@ -0,0 +1,97 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="8"
+ height="8"
+ viewBox="0 0 8 8"
+ version="1.1"
+ id="svg8"
+ inkscape:export-filename="D:\Bethesda Game Modding\Mod Organizer 2\stylesheets\Paper\Dark\dots.png"
+ inkscape:export-xdpi="307.20001"
+ inkscape:export-ydpi="307.20001"
+ inkscape:version="0.92.1 r15371"
+ sodipodi:docname="up.svg">
+ <defs
+ id="defs2" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#505050"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="116.25"
+ inkscape:cx="4"
+ inkscape:cy="4"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer25"
+ showgrid="false"
+ units="px"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-page="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true"
+ inkscape:snap-bbox-edge-midpoints="true"
+ inkscape:snap-bbox-midpoints="true"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:window-width="1920"
+ inkscape:window-height="1027"
+ inkscape:window-x="-8"
+ inkscape:window-y="-8"
+ inkscape:window-maximized="1"
+ inkscape:snap-center="true"
+ inkscape:snap-object-midpoints="true"
+ inkscape:measure-start="18.8975,12.498"
+ inkscape:measure-end="20,12.498"
+ inkscape:snap-intersection-paths="true"
+ inkscape:object-paths="true"
+ inkscape:snap-smooth-nodes="true"
+ inkscape:snap-midpoints="true"
+ inkscape:snap-global="true">
+ <sodipodi:guide
+ position="4,4"
+ orientation="1,0"
+ id="guide4039"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="4,4"
+ orientation="0,1"
+ id="guide3935"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer25"
+ inkscape:label="Content"
+ transform="translate(0,-12)">
+ <path
+ style="display:inline;opacity:1;fill:#4d4a41;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:212.1320343;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.93939996;stroke-opacity:1;paint-order:markers stroke fill"
+ d="m 0,17 2,-2 2,-2 2,2 2,2 -2,2 -2,-2 -2,2 z"
+ id="rect3900-0"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
diff --git a/src/stylesheets/Paper/Automata/Toolbar/archives.svg b/src/stylesheets/Paper/Automata/Toolbar/archives.svg
new file mode 100644
index 00000000..c13182c9
--- /dev/null
+++ b/src/stylesheets/Paper/Automata/Toolbar/archives.svg
@@ -0,0 +1,99 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="128"
+ height="128"
+ viewBox="0 0 128 128"
+ version="1.1"
+ id="svg8"
+ inkscape:export-filename="D:\Bethesda Game Modding\Mod Organizer 2\stylesheets\Paper\Dark\dots.png"
+ inkscape:export-xdpi="307.20001"
+ inkscape:export-ydpi="307.20001"
+ inkscape:version="0.92.1 r15371"
+ sodipodi:docname="archives.svg">
+ <defs
+ id="defs2" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#505050"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="8.1349342"
+ inkscape:cx="95.872503"
+ inkscape:cy="56.896625"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer25"
+ showgrid="false"
+ units="px"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-page="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true"
+ inkscape:snap-bbox-edge-midpoints="true"
+ inkscape:snap-bbox-midpoints="true"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:window-width="1920"
+ inkscape:window-height="1027"
+ inkscape:window-x="-8"
+ inkscape:window-y="-8"
+ inkscape:window-maximized="1"
+ inkscape:snap-center="true"
+ inkscape:snap-object-midpoints="true"
+ inkscape:measure-start="18.8975,12.498"
+ inkscape:measure-end="20,12.498"
+ inkscape:snap-intersection-paths="true"
+ inkscape:object-paths="true"
+ inkscape:snap-smooth-nodes="true"
+ inkscape:snap-midpoints="true"
+ inkscape:snap-global="true"
+ inkscape:lockguides="true">
+ <sodipodi:guide
+ position="64,64"
+ orientation="1,0"
+ id="guide4039"
+ inkscape:locked="true" />
+ <sodipodi:guide
+ position="64,64"
+ orientation="0,1"
+ id="guide3935"
+ inkscape:locked="true"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer25"
+ inkscape:label="Content"
+ transform="translate(0,108)">
+ <path
+ style="opacity:1;fill:#4e4b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:normal"
+ d="m 73.998642,-83.999999 -9.998644,10.001356 H 14.001355 V -4.000001 H 113.99864 V -73.998643 L 104,-83.999999 H 88.999315 Z"
+ id="path3849"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccccc" />
+ </g>
+</svg>
diff --git a/src/stylesheets/Paper/Automata/Toolbar/executables.svg b/src/stylesheets/Paper/Automata/Toolbar/executables.svg
new file mode 100644
index 00000000..6c442f76
--- /dev/null
+++ b/src/stylesheets/Paper/Automata/Toolbar/executables.svg
@@ -0,0 +1,99 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="128"
+ height="128"
+ viewBox="0 0 128 128"
+ version="1.1"
+ id="svg8"
+ inkscape:export-filename="D:\Bethesda Game Modding\Mod Organizer 2\stylesheets\Paper\Dark\dots.png"
+ inkscape:export-xdpi="307.20001"
+ inkscape:export-ydpi="307.20001"
+ inkscape:version="0.92.1 r15371"
+ sodipodi:docname="executables.svg">
+ <defs
+ id="defs2" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#505050"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="3.100169"
+ inkscape:cx="188.48486"
+ inkscape:cy="-11.491737"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer25"
+ showgrid="false"
+ units="px"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-page="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true"
+ inkscape:snap-bbox-edge-midpoints="true"
+ inkscape:snap-bbox-midpoints="true"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:window-width="1920"
+ inkscape:window-height="1027"
+ inkscape:window-x="-8"
+ inkscape:window-y="-8"
+ inkscape:window-maximized="1"
+ inkscape:snap-center="true"
+ inkscape:snap-object-midpoints="true"
+ inkscape:measure-start="18.8975,12.498"
+ inkscape:measure-end="20,12.498"
+ inkscape:snap-intersection-paths="true"
+ inkscape:object-paths="true"
+ inkscape:snap-smooth-nodes="true"
+ inkscape:snap-midpoints="true"
+ inkscape:snap-global="true">
+ <sodipodi:guide
+ position="64,64"
+ orientation="1,0"
+ id="guide4039"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="64,64"
+ orientation="0,1"
+ id="guide3935"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer25"
+ inkscape:label="Content"
+ transform="translate(0,108)">
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;opacity:1;fill:#4e4b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.00000048;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:stroke fill markers"
+ d="m 69.224291,-99 v 25.297161 A 57.019516,45.615413 0 0 0 12.206203,-28.088371 57.019516,45.615413 0 0 0 40.038762,11 h 7.071835 A 34.069164,27.255211 0 0 1 35.161239,-9.7379829 34.069164,27.255211 0 0 1 69.224291,-36.979329 v 25.297161 L 115.7938,-55.341082 Z"
+ id="rect3929"
+ inkscape:transform-center-x="-6.418094"
+ inkscape:transform-center-y="3.2118799" />
+ </g>
+</svg>
diff --git a/src/stylesheets/Paper/Automata/Toolbar/help.svg b/src/stylesheets/Paper/Automata/Toolbar/help.svg
new file mode 100644
index 00000000..2cab3931
--- /dev/null
+++ b/src/stylesheets/Paper/Automata/Toolbar/help.svg
@@ -0,0 +1,128 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="128"
+ height="128"
+ viewBox="0 0 128 128"
+ version="1.1"
+ id="svg8"
+ inkscape:export-filename="D:\Bethesda Game Modding\Mod Organizer 2\stylesheets\Paper\Dark\dots.png"
+ inkscape:export-xdpi="307.20001"
+ inkscape:export-ydpi="307.20001"
+ inkscape:version="0.92.1 r15371"
+ sodipodi:docname="help.svg">
+ <defs
+ id="defs2" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#505050"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="4.7258155"
+ inkscape:cx="76.464409"
+ inkscape:cy="41.213613"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer25"
+ showgrid="false"
+ units="px"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-page="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true"
+ inkscape:snap-bbox-edge-midpoints="true"
+ inkscape:snap-bbox-midpoints="true"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:window-width="1920"
+ inkscape:window-height="1027"
+ inkscape:window-x="-8"
+ inkscape:window-y="-8"
+ inkscape:window-maximized="1"
+ inkscape:snap-center="true"
+ inkscape:snap-object-midpoints="true"
+ inkscape:measure-start="18.8975,12.498"
+ inkscape:measure-end="20,12.498"
+ inkscape:snap-intersection-paths="true"
+ inkscape:object-paths="true"
+ inkscape:snap-smooth-nodes="true"
+ inkscape:snap-midpoints="true"
+ inkscape:snap-global="true">
+ <sodipodi:guide
+ position="64,64"
+ orientation="1,0"
+ id="guide4039"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="64,64"
+ orientation="0,1"
+ id="guide3935"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer25"
+ inkscape:label="Content"
+ transform="translate(0,108)">
+ <circle
+ style="opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#4e4b42;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:stroke fill markers"
+ id="path3848"
+ cx="64"
+ cy="-44"
+ r="60" />
+ <g
+ id="g3871"
+ transform="translate(0,-1.242582)"
+ style="stroke-width:1;fill:#4e4b42;fill-opacity:1">
+ <path
+ id="path3851"
+ d="m 64,-80 c -4.113298,1.67e-4 -7.447744,3.334612 -7.44791,7.44791 -6.7e-4,4.11389 3.33402,7.449258 7.44791,7.449426 4.11389,-1.68e-4 7.44858,-3.335536 7.44791,-7.449426 C 71.447743,-76.665387 68.113298,-79.999833 64,-80 Z"
+ style="opacity:1;fill:#4e4b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:stroke fill markers"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3860"
+ d="m 56.55209,-50.206086 v 34.757418 h 14.89582 v -34.757418 z"
+ style="opacity:1;fill:#4e4b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:stroke fill markers" />
+ <path
+ style="opacity:1;fill:#4e4b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:stroke fill markers"
+ d="m 64,-80 c -4.113298,1.67e-4 -7.447744,3.334612 -7.44791,7.44791 -6.7e-4,4.11389 3.33402,7.449258 7.44791,7.449426 4.11389,-1.68e-4 7.44858,-3.335536 7.44791,-7.449426 C 71.447743,-76.665387 68.113298,-79.999833 64,-80 Z"
+ id="path3853"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3862"
+ d="m 64,-57.654754 c -4.113298,1.67e-4 -7.447744,3.334612 -7.44791,7.44791 -6.7e-4,4.11389 3.33402,7.449258 7.44791,7.449426 4.11389,-1.68e-4 7.44858,-3.335536 7.44791,-7.449426 -1.67e-4,-4.113297 -3.334612,-7.447743 -7.44791,-7.44791 z"
+ style="opacity:1;fill:#4e4b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:stroke fill markers" />
+ <path
+ style="opacity:1;fill:#4e4b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:stroke fill markers"
+ d="m 64,-22.897336 c -4.113298,1.67e-4 -7.447744,3.334612 -7.44791,7.44791 C 56.55142,-11.335536 59.88611,-8.000168 64,-8 c 4.11389,-1.68e-4 7.44858,-3.335536 7.44791,-7.449426 -1.67e-4,-4.113297 -3.334612,-7.447743 -7.44791,-7.44791 z"
+ id="path3864"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
diff --git a/src/stylesheets/Paper/Automata/Toolbar/instances.svg b/src/stylesheets/Paper/Automata/Toolbar/instances.svg
new file mode 100644
index 00000000..4b0cd707
--- /dev/null
+++ b/src/stylesheets/Paper/Automata/Toolbar/instances.svg
@@ -0,0 +1,98 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="128"
+ height="128"
+ viewBox="0 0 128 128"
+ version="1.1"
+ id="svg8"
+ inkscape:export-filename="D:\Bethesda Game Modding\Mod Organizer 2\stylesheets\Paper\Dark\dots.png"
+ inkscape:export-xdpi="307.20001"
+ inkscape:export-ydpi="307.20001"
+ inkscape:version="0.92.1 r15371"
+ sodipodi:docname="instances.svg">
+ <defs
+ id="defs2" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#505050"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="3.7735291"
+ inkscape:cx="64.04823"
+ inkscape:cy="-33.258287"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer25"
+ showgrid="false"
+ units="px"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-page="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true"
+ inkscape:snap-bbox-edge-midpoints="true"
+ inkscape:snap-bbox-midpoints="true"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:window-width="1920"
+ inkscape:window-height="1027"
+ inkscape:window-x="-8"
+ inkscape:window-y="-8"
+ inkscape:window-maximized="1"
+ inkscape:snap-center="true"
+ inkscape:snap-object-midpoints="true"
+ inkscape:measure-start="18.8975,12.498"
+ inkscape:measure-end="20,12.498"
+ inkscape:snap-intersection-paths="true"
+ inkscape:object-paths="true"
+ inkscape:snap-smooth-nodes="true"
+ inkscape:snap-midpoints="true"
+ inkscape:snap-global="true">
+ <sodipodi:guide
+ position="64,64"
+ orientation="1,0"
+ id="guide4039"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="64,64"
+ orientation="0,1"
+ id="guide3935"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer25"
+ inkscape:label="Content"
+ transform="translate(0,108)">
+ <path
+ style="opacity:1;fill:#4e4b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:8;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:normal"
+ d="m 43.074486,-84 c -7.191305,0.179697 -13.681107,2.360737 -19.604836,6.184844 l -0.829325,3.561678 -4.167425,3.208112 -5.581697,14.982451 c -5.7982022,15.544107 -18.3828084,44.900541 4.037437,52.0629145 5.467067,-4.389774 11.744564,-10.4769935 18.039776,-16.6021055 3.729503,-3.62877 7.012953,-4.081632 14.160925,-4.081632 h 14.865463 14.865462 c 7.147976,0 10.431426,0.452872 14.160926,4.081632 6.2952,6.125112 12.583088,12.2123315 18.050168,16.6021055 22.42024,-7.1623735 9.83564,-36.5188075 4.03744,-52.0629145 l -5.5921,-14.982451 -4.15702,-3.208112 -0.82933,-3.561678 C 98.606622,-81.639263 92.106422,-83.820123 84.915122,-84 l -5.46211,2.979332 H 63.994804 48.546994 Z m 51.652146,11.766541 c 2.28943,-7.75e-4 4.14597,1.854604 4.14663,4.144028 7.8e-4,2.290441 -1.85618,4.147401 -4.14663,4.146627 -2.28942,-6.62e-4 -4.1448,-1.857203 -4.14402,-4.146627 6.6e-4,-2.288409 1.85562,-4.143366 4.14402,-4.144028 z m -61.453263,4.144028 c 4.578848,-1.12e-4 8.290765,3.711805 8.290653,8.290653 1.13e-4,4.578848 -3.711805,8.290766 -8.290653,8.290655 -4.578848,1.13e-4 -8.290768,-3.711807 -8.290654,-8.290655 -1.12e-4,-4.578848 3.711806,-8.290766 8.290654,-8.290653 z m 53.162613,4.146627 c 2.28943,-7.75e-4 4.14597,1.854603 4.14663,4.144026 7.7e-4,2.290441 -1.85619,4.147403 -4.14663,4.146627 -2.289423,-6.62e-4 -4.144799,-1.857203 -4.144025,-4.146627 6.62e-4,-2.288409 1.855618,-4.143365 4.144025,-4.144026 z m 16.581308,0 c 2.28942,-7.75e-4 4.14596,1.854603 4.14663,4.144026 7.7e-4,2.290441 -1.85619,4.147403 -4.14663,4.146627 -2.28943,-6.62e-4 -4.144798,-1.857203 -4.144028,-4.146627 6.6e-4,-2.288409 1.855618,-4.143365 4.144028,-4.144026 z m -8.290658,8.290654 c 2.28943,-7.75e-4 4.14597,1.854602 4.14663,4.144027 7.8e-4,2.29044 -1.85618,4.147401 -4.14663,4.146626 -2.28942,-6.62e-4 -4.1448,-1.857203 -4.14402,-4.146626 6.6e-4,-2.28841 1.85562,-4.143366 4.14402,-4.144027 z m -48.662414,6.184843 h 5.527101 v 5.527103 h 5.527103 v 5.527102 H 51.591319 V -32.886 h -5.527101 v -5.527102 h -5.527103 v -5.527102 h 5.527103 z m 33.10802,0 c 4.578848,-1.12e-4 8.290764,3.711806 8.290654,8.290654 1.1e-4,4.578848 -3.711806,8.290765 -8.290654,8.290653 -4.578848,1.13e-4 -8.290766,-3.711805 -8.290654,-8.290653 -1.13e-4,-4.578848 3.711806,-8.290767 8.290654,-8.290654 z"
+ id="path3849"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccscscccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
+ </g>
+</svg>
diff --git a/src/stylesheets/Paper/Automata/Toolbar/nexus.svg b/src/stylesheets/Paper/Automata/Toolbar/nexus.svg
new file mode 100644
index 00000000..852f0034
--- /dev/null
+++ b/src/stylesheets/Paper/Automata/Toolbar/nexus.svg
@@ -0,0 +1,122 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="128"
+ height="128"
+ viewBox="0 0 128 128"
+ version="1.1"
+ id="svg8"
+ inkscape:export-filename="D:\Bethesda Game Modding\Mod Organizer 2\stylesheets\Paper\Dark\dots.png"
+ inkscape:export-xdpi="307.20001"
+ inkscape:export-ydpi="307.20001"
+ inkscape:version="0.92.1 r15371"
+ sodipodi:docname="nexus.svg">
+ <defs
+ id="defs2" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#505050"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="12.991372"
+ inkscape:cx="76.213845"
+ inkscape:cy="37.493768"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer25"
+ showgrid="false"
+ units="px"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-page="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true"
+ inkscape:snap-bbox-edge-midpoints="true"
+ inkscape:snap-bbox-midpoints="true"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:window-width="1920"
+ inkscape:window-height="1027"
+ inkscape:window-x="-8"
+ inkscape:window-y="-8"
+ inkscape:window-maximized="1"
+ inkscape:snap-center="true"
+ inkscape:snap-object-midpoints="true"
+ inkscape:measure-start="108.073,108.073"
+ inkscape:measure-end="112.737,112.737"
+ inkscape:snap-intersection-paths="true"
+ inkscape:object-paths="true"
+ inkscape:snap-smooth-nodes="true"
+ inkscape:snap-midpoints="true"
+ inkscape:snap-global="true">
+ <sodipodi:guide
+ position="64,64"
+ orientation="1,0"
+ id="guide4039"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="64,64"
+ orientation="0,1"
+ id="guide3935"
+ inkscape:locked="false"
+ inkscape:label="255"
+ inkscape:color="rgb(0,0,255)" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer25"
+ inkscape:label="Content"
+ transform="translate(0,108)">
+ <path
+ style="opacity:1;fill:#4e4b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:7.99999952;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:normal"
+ d="m 37.578906,-103.99986 -2.327345,1.09219 c -5.625077,2.65309 -12.341703,6.959572 -18.124217,14.742184 l -1.439062,1.942967 -0.3,2.397657 c -0.727944,5.785703 0.645537,10.927203 2.601562,15.550782 -3.97001,7.523426 -6.539675,15.713366 -6.546095,24.274216 h 0.01176 v 0.06094 c 0.01254,2.097981 0.399663,4.072256 0.646875,6.100783 -3.5620623,4.427533 -7.0313403,9.956846 -7.8375002,17.704685 l -0.2648844,2.554689 1.0921859,2.327343 c 2.6531016,5.6250757 6.9595777,12.341692 14.7421887,18.12422 l 1.94297,1.4390639 2.397656,0.3 c 5.785701,0.727944 10.927203,-0.6455399 15.55078,-2.6015644 7.523428,3.9700084 15.713368,6.539664 24.274217,6.546096 v -0.012 h 0.06094 c 2.097982,-0.0126 4.072257,-0.39966 6.100783,-0.646872 4.427536,3.5620555 9.956847,7.0313275 17.704687,7.8374995 l 2.554687,0.26484 2.327343,-1.092192 C 98.373512,12.254575 105.09014,7.9480995 110.87265,0.1654875 l 1.43672,-1.9429715 0.30236,-2.3976556 c 0.72794,-5.7854267 -0.64555,-10.9269284 -2.60157,-15.5505044 3.97001,-7.523428 6.53967,-15.713368 6.5461,-24.27422 h -0.012 v -0.06094 c -0.0133,-2.097984 -0.39967,-4.072258 -0.64688,-6.100783 3.56206,-4.427535 7.03131,-9.956848 7.8375,-17.704688 L 124,-70.420959 l -1.09219,-2.327345 c -2.6531,-5.625076 -6.95957,-12.341702 -14.74219,-18.124218 l -1.94297,-1.436719 -2.39765,-0.302345 c -5.785706,-0.727943 -10.927203,0.64554 -15.550778,2.601564 -7.523434,-3.970005 -15.713374,-6.539667 -24.274225,-6.546088 v 0.01172 h -0.06094 c -2.097982,0.01266 -4.072255,0.399662 -6.100782,0.646874 -4.427534,-3.562058 -9.956847,-7.031344 -17.704687,-7.837494 z m 1.485937,6.351563 c 0.03984,-7.78e-4 0.07969,-7.78e-4 0.119532,0 0.08844,8.72e-4 0.176806,0.0056 0.264842,0.01406 0.01563,-1.23e-4 0.03128,-1.23e-4 0.04686,0 0.06038,0.0056 0.120558,0.01378 0.180468,0.02344 0.03369,0.0037 0.06016,0.01978 0.09376,0.02344 8.119439,0.924618 13.438311,4.913385 17.695312,8.847652 0.518092,0.475264 0.857314,1.113992 0.960938,1.809374 1.846847,-0.259602 3.708531,-0.399736 5.573432,-0.419528 7.414774,0.0056 14.704137,1.913317 21.171093,5.540624 3.592503,-2.496611 7.615515,-4.335787 12.384376,-4.79531 1.744997,-0.168149 3.586634,-0.159114 5.503124,0.082 0.5255,0.06779 1.0245,0.270451 1.44845,0.588283 6.86031,5.097232 10.33844,10.548846 12.76641,15.658591 0.0245,0.05156 0.0622,0.100836 0.0867,0.152346 0.0157,0.04031 0.0306,0.08093 0.0445,0.121879 0.0412,0.09035 0.0779,0.182649 0.11015,0.276564 0,0.0029 0,0.0063 0,0.0094 4e-5,0.0086 4e-5,0.01718 0,0.02577 0.0284,0.09024 0.0527,0.18174 0.0727,0.274217 0.0197,0.09143 0.0355,0.18371 0.0469,0.276565 1e-5,0.0079 1e-5,0.01562 0,0.02344 0.005,0.06 0.0108,0.120187 0.0141,0.180468 7.7e-4,0.03984 7.7e-4,0.07969 0,0.119532 -8.7e-4,0.08844 -0.005,0.176808 -0.0141,0.264844 1.2e-4,0.01563 1.2e-4,0.03125 0,0.04685 -0.008,0.06038 -0.0139,0.12056 -0.0233,0.180468 -0.004,0.03369 -0.0199,0.06016 -0.0234,0.09376 -0.92463,8.119438 -4.91339,13.438312 -8.84766,17.695313 -0.47526,0.51809 -1.114,0.857312 -1.80939,0.960935 0.25962,1.846853 0.39976,3.708535 0.41955,5.573439 -0.005,7.414773 -1.91333,14.704135 -5.54064,21.171093 2.49662,3.592503 4.33578,7.615515 4.79533,12.384375 0.16814,1.7449932 0.1591,3.586632 -0.0819,5.5031256 -0.0677,0.5254956 -0.27045,1.0244952 -0.58828,1.4484372 -5.09716,6.8603052 -10.548768,10.3384447 -15.658515,12.7664047 -0.05156,0.02448 -0.100836,0.06228 -0.152342,0.08676 -0.04031,0.01572 -0.08092,0.0306 -0.12188,0.04452 -0.09035,0.04116 -0.182648,0.07788 -0.276562,0.11016 -0.0031,0 -0.0063,0 -0.0094,0 -0.0086,3.5e-5 -0.01718,3.5e-5 -0.02577,0 -0.09024,0.02844 -0.181741,0.05268 -0.274216,0.07272 -0.09143,0.0198 -0.183711,0.03552 -0.276563,0.04692 -0.0079,2.4e-5 -0.01563,2.4e-5 -0.02344,0 -0.06,0.006 -0.120186,0.0108 -0.180468,0.01404 -0.03984,7.8e-4 -0.0797,7.8e-4 -0.119532,0 -0.08844,-8.64e-4 -0.176806,-0.006 -0.264846,-0.01404 -0.01563,1.2e-4 -0.03128,1.2e-4 -0.04686,0 -0.06037,-0.006 -0.120559,-0.0138 -0.180469,-0.0234 -0.03369,-0.0036 -0.06014,-0.0198 -0.09376,-0.0234 C 80.110654,8.6632245 74.79178,4.6744608 70.534779,0.740188 c -0.51809,-0.47526 -0.857313,-1.113984 -0.960936,-1.8093745 -1.847084,0.259404 -3.708765,0.3995425 -5.573668,0.4193305 -7.414776,-0.006 -14.704135,-1.9133172 -21.171094,-5.5406236 -3.592503,2.4966096 -7.615515,4.3357863 -12.384377,4.7953119 -1.744993,0.1681465 -3.586632,0.1591105 -5.503122,-0.082008 -0.525498,-0.067788 -1.024497,-0.2704523 -1.448438,-0.5882844 -6.860299,-5.0972295 -10.338443,-10.5488439 -12.766408,-15.6585929 -0.0245,-0.05156 -0.06234,-0.10086 -0.08672,-0.152343 -0.0157,-0.0403 -0.03056,-0.08095 -0.04453,-0.12188 -0.04117,-0.09035 -0.07795,-0.182646 -0.11016,-0.276563 -6e-6,-0.0031 -6e-6,-0.0063 0,-0.0094 -3.6e-5,-0.0086 -3.6e-5,-0.01718 0,-0.02577 -0.02843,-0.09024 -0.05268,-0.181742 -0.07265,-0.274218 -0.01984,-0.09143 -0.03547,-0.183709 -0.04685,-0.276562 -3.1e-5,-0.0077 -3.1e-5,-0.01562 0,-0.02344 -0.0067,-0.06 -0.01116,-0.120186 -0.0141,-0.180469 -7.76e-4,-0.03984 -7.76e-4,-0.07969 0,-0.119532 8.7e-4,-0.08844 0.0053,-0.176808 0.0141,-0.264847 -1.19e-4,-0.01563 -1.19e-4,-0.03125 0,-0.04685 0.006,-0.06037 0.0138,-0.120559 0.02344,-0.180469 0.0037,-0.03369 0.01981,-0.06014 0.02344,-0.09376 0.924627,-8.119438 4.91339,-13.438313 8.847658,-17.695312 0.475263,-0.518093 1.113993,-0.857315 1.809373,-0.960938 -0.259589,-1.846868 -0.399724,-3.708551 -0.419516,-5.573451 0.0056,-7.414775 1.913317,-14.704137 5.540624,-21.171094 -2.49661,-3.592502 -4.335787,-7.615515 -4.79531,-12.384377 -0.168149,-1.744994 -0.159113,-3.58663 0.082,-5.503124 0.06779,-0.525498 0.270452,-1.024496 0.588283,-1.448437 5.097232,-6.860299 10.548845,-10.338443 15.658591,-12.766403 0.05156,-0.02447 0.100837,-0.06234 0.152347,-0.08672 0.04031,-0.01575 0.08093,-0.03056 0.121878,-0.04453 0.09035,-0.04116 0.182646,-0.07791 0.276563,-0.110157 0.0029,0 0.0063,0 0.0094,0 0.0086,-3.7e-5 0.01718,-3.7e-5 0.02578,0 0.09024,-0.02841 0.181741,-0.05269 0.274218,-0.07266 0.09143,-0.01987 0.183711,-0.03544 0.276563,-0.04687 0.0077,-2.8e-5 0.01563,-2.8e-5 0.02344,0 0.06,-0.0066 0.120186,-0.01116 0.180468,-0.01416 z m 0.119532,3.070311 c -4.918893,2.320027 -9.830756,5.400922 -14.6625,11.903905 -0.106116,0.843338 -0.161184,1.665537 -0.171096,2.467968 -0.0098,0.802433 0.02693,1.584662 0.100776,2.350782 1.033521,10.725648 10.216452,17.923996 18.292968,25.258593 l -3.764063,4.246876 21.255469,-0.131254 -2.578125,-20.934377 -4.446092,5.025 c -7.369823,-8.23868 -18.074776,-20.906037 -14.02734,-30.187495 z m 3.009373,0.623437 c -0.04253,0.205977 -0.106176,0.407033 -0.189841,0.599999 -0.355764,0.815838 -0.552587,1.702983 -0.602346,2.660157 -0.01586,0.305199 -0.01586,0.61855 0,0.9375 0.111036,2.232626 0.98277,4.789133 2.3625,7.502343 3.563011,-1.890229 7.372419,-3.27389 11.317968,-4.110937 l 0.3,-0.119533 c -3.54753,-3.278554 -7.503737,-6.172443 -13.188279,-7.46953 z m 12.2625,4.582031 -0.215624,0.07031 -0.01176,0.02344 c 0.08105,-0.01726 0.146146,-0.07651 0.227344,-0.09376 z m 45.750002,5.723437 c -0.802434,-0.0098 -1.584666,0.02696 -2.350781,0.100775 -10.725652,1.03352 -17.923998,10.216453 -25.258595,18.292968 l -4.246878,-3.764057 0.131254,21.255469 20.934376,-2.578123 -5.025,-4.446096 c 8.238683,-7.369823 20.906044,-18.072433 30.187494,-14.025 -2.32001,-4.918892 -5.40091,-9.833098 -11.9039,-14.664842 -0.84333,-0.106117 -1.66554,-0.161182 -2.46797,-0.171094 z m 9.55079,17.050783 c -2.23265,0.111035 -4.78915,0.982766 -7.50235,2.362499 1.89023,3.563012 3.27389,7.372418 4.11093,11.317966 l 0.11965,0.3 c 3.27856,-3.547531 6.17244,-7.503737 7.46954,-13.18828 -0.20598,-0.04252 -0.40703,-0.106175 -0.6,-0.189842 -0.81584,-0.355764 -1.70298,-0.552585 -2.66016,-0.602343 -0.30519,-0.01586 -0.61855,-0.01586 -0.9375,0 z m -0.47813,12.827343 c 0.0173,0.08105 0.0764,0.146144 0.0937,0.227342 l -0.0702,-0.215625 z m -49.762503,13.535156 -20.932032,2.578124 5.025,4.446095 c -8.238684,7.369824 -20.906042,18.074776 -30.1875,14.027343 2.320026,4.918894 5.400921,9.8307519 11.903905,14.662499 0.843337,0.106116 1.665539,0.1611829 2.467968,0.1710949 0.802431,0.00984 1.584663,-0.026952 2.350782,-0.100776 10.72565,-1.0335217 17.923997,-10.2164539 25.258593,-18.2929699 l 4.246874,3.764056 z m 29.503121,0.585935 -21.255467,0.133592 2.578124,20.932032 4.446095,-5.025 c 7.369824,8.238685 18.072432,20.9060398 14.024999,30.1875015 4.91889,-2.3200323 9.833102,-5.4009245 14.664841,-11.9039095 0.10608,-0.8433371 0.16119,-1.6655363 0.1711,-2.4679691 0.01,-0.8024304 -0.027,-1.5846612 -0.1008,-2.3507799 C 102.5149,-20.870044 93.331956,-28.06839 85.255441,-35.402988 Z m -67.504684,4.267971 c -3.278554,3.547531 -6.172444,7.503737 -7.469533,13.18828 0.205978,0.04256 0.407034,0.106176 0.6,0.189843 0.815838,0.355762 1.702981,0.552586 2.660158,0.602343 0.305198,0.01586 0.618549,0.01586 0.9375,0 2.232626,-0.111036 4.789133,-0.982768 7.502342,-2.3625 -1.890227,-3.56301 -3.273887,-7.372418 -4.110936,-11.317966 z m -2.8875,0.92578 0.0703,0.215625 0.02344,0.01176 c -0.01726,-0.08105 -0.0765,-0.146143 -0.09375,-0.227344 z m 65.608592,28.7109367 c -3.563012,1.8902291 -7.37242,3.2738893 -11.317967,4.1109373 l -0.3,0.119532 c 3.54753,3.2785476 7.503737,6.1724429 13.188278,7.4695349 0.04252,-0.20598 0.106177,-0.407028 0.189844,-0.6 0.355763,-0.815844 0.552585,-1.7029799 0.602345,-2.6601593 0.01586,-0.305196 0.01586,-0.618552 0,-0.9375 -0.111036,-2.2326384 -0.982768,-4.789134 -2.3625,-7.5023449 z M 73.771091,1.2790394 c -0.08105,0.01728 -0.146145,0.07644 -0.227344,0.09372 l 0.215627,-0.07032 z"
+ id="path3849"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccccccscccccccccccccccccccccscccccccccccccccccccccscccccccccccccccccccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccc" />
+ <g
+ style="fill:#505050;fill-opacity:1;stroke-width:0.19550784"
+ id="g4412"
+ inkscape:transform-center-x="-5.0913502"
+ inkscape:transform-center-y="-4.4596393"
+ transform="matrix(5.1148849,0,0,5.1148849,12.851148,-95.148848)" />
+ <g
+ transform="matrix(0,4.9102895,-4.9102895,0,113.1029,-93.102895)"
+ inkscape:transform-center-y="24"
+ inkscape:transform-center-x="-21.022466"
+ id="g4064"
+ style="fill:#505050;fill-opacity:1;stroke-width:0.20365398" />
+ <g
+ style="fill:#505050;fill-opacity:1;stroke-width:0.20365398"
+ id="g4068"
+ inkscape:transform-center-x="24.000005"
+ inkscape:transform-center-y="21.022466"
+ transform="matrix(-4.9102895,0,0,-4.9102895,113.10289,5.1029002)" />
+ <g
+ transform="matrix(-2.719147e-8,-4.9102894,4.9102894,-2.719147e-8,14.8971,5.1028901)"
+ inkscape:transform-center-y="-24.000003"
+ inkscape:transform-center-x="21.022466"
+ id="g4072"
+ style="fill:#505050;fill-opacity:1;stroke-width:0.20365398" />
+ </g>
+</svg>
diff --git a/src/stylesheets/Paper/Automata/Toolbar/problems.svg b/src/stylesheets/Paper/Automata/Toolbar/problems.svg
new file mode 100644
index 00000000..f3fed97c
--- /dev/null
+++ b/src/stylesheets/Paper/Automata/Toolbar/problems.svg
@@ -0,0 +1,132 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="128"
+ height="128"
+ viewBox="0 0 128 128"
+ version="1.1"
+ id="svg8"
+ inkscape:export-filename="D:\Bethesda Game Modding\Mod Organizer 2\stylesheets\Paper\Dark\dots.png"
+ inkscape:export-xdpi="307.20001"
+ inkscape:export-ydpi="307.20001"
+ inkscape:version="0.92.1 r15371"
+ sodipodi:docname="problems.svg">
+ <defs
+ id="defs2" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#505050"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="10.201449"
+ inkscape:cx="14.047399"
+ inkscape:cy="24.756816"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer25"
+ showgrid="false"
+ units="px"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-page="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true"
+ inkscape:snap-bbox-edge-midpoints="true"
+ inkscape:snap-bbox-midpoints="true"
+ showguides="false"
+ inkscape:guide-bbox="true"
+ inkscape:window-width="1920"
+ inkscape:window-height="1027"
+ inkscape:window-x="-8"
+ inkscape:window-y="-8"
+ inkscape:window-maximized="1"
+ inkscape:snap-center="true"
+ inkscape:snap-object-midpoints="true"
+ inkscape:measure-start="18.8975,12.498"
+ inkscape:measure-end="20,12.498"
+ inkscape:snap-intersection-paths="true"
+ inkscape:object-paths="true"
+ inkscape:snap-smooth-nodes="true"
+ inkscape:snap-midpoints="true"
+ inkscape:snap-global="true">
+ <sodipodi:guide
+ position="64,64"
+ orientation="1,0"
+ id="guide4039"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="64,64"
+ orientation="0,1"
+ id="guide3935"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer25"
+ inkscape:label="Content"
+ transform="translate(0,108)">
+ <g
+ id="g3861"
+ transform="matrix(0.55290621,0,0,0.55290621,28.614002,-29.750801)"
+ style="fill:#737373;fill-opacity:1;stroke-width:1.80862486" />
+ <path
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#4e4b42;stroke-width:7.99999952;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m 64.344931,-96.263216 c -2.808173,-0.131523 -5.455193,1.310482 -6.861125,3.737706 L 4.9422487,-1.7926865 C 2.0494853,3.2027814 5.6651359,9.4471972 11.450616,9.4476002 H 116.53373 c 5.78548,-4.1e-4 9.40112,-6.2448225 6.50836,-11.2402867 L 70.500541,-92.52551 c -1.279824,-2.209515 -3.599319,-3.61792 -6.15561,-3.737706 z"
+ id="path3875"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccc" />
+ <g
+ transform="matrix(-0.83333333,0,0,-0.83333333,117.3255,-70.7681)"
+ id="g3871"
+ style="stroke-width:1.20000005;fill:#4e4b42;fill-opacity:1">
+ <path
+ inkscape:connector-curvature="0"
+ id="path3851"
+ d="m 64,-80 c -4.113298,1.67e-4 -7.447744,3.334612 -7.44791,7.44791 -6.7e-4,4.11389 3.33402,7.449258 7.44791,7.449426 4.11389,-1.68e-4 7.44858,-3.335536 7.44791,-7.449426 C 71.447743,-76.665387 68.113298,-79.999833 64,-80 Z"
+ style="opacity:1;fill:#4e4b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:9.60000038;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:stroke fill markers" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3860-8"
+ d="m 56.55209,-50.206086 v 34.757418 h 14.89582 v -34.757418 z"
+ style="opacity:1;fill:#4e4b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:9.60000038;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:stroke fill markers" />
+ <path
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#4e4b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:9.60000038;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:stroke fill markers"
+ d="m 64,-80 c -4.113298,1.67e-4 -7.447744,3.334612 -7.44791,7.44791 -6.7e-4,4.11389 3.33402,7.449258 7.44791,7.449426 4.11389,-1.68e-4 7.44858,-3.335536 7.44791,-7.449426 C 71.447743,-76.665387 68.113298,-79.999833 64,-80 Z"
+ id="path3853" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path3862"
+ d="m 64,-57.654754 c -4.113298,1.67e-4 -7.447744,3.334612 -7.44791,7.44791 -6.7e-4,4.11389 3.33402,7.449258 7.44791,7.449426 4.11389,-1.68e-4 7.44858,-3.335536 7.44791,-7.449426 -1.67e-4,-4.113297 -3.334612,-7.447743 -7.44791,-7.44791 z"
+ style="opacity:1;fill:#4e4b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:9.60000038;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:stroke fill markers" />
+ <path
+ style="opacity:1;fill:#4e4b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:9.60000038;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:stroke fill markers"
+ d="m 64,-22.897336 c -4.113298,1.67e-4 -7.447744,3.334612 -7.44791,7.44791 C 56.55142,-11.335536 59.88611,-8.000168 64,-8 c 4.11389,-1.68e-4 7.44858,-3.335536 7.44791,-7.449426 -1.67e-4,-4.113297 -3.334612,-7.447743 -7.44791,-7.44791 z"
+ id="path3864"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
diff --git a/src/stylesheets/Paper/Automata/Toolbar/profiles.svg b/src/stylesheets/Paper/Automata/Toolbar/profiles.svg
new file mode 100644
index 00000000..306c94f5
--- /dev/null
+++ b/src/stylesheets/Paper/Automata/Toolbar/profiles.svg
@@ -0,0 +1,112 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="128"
+ height="128"
+ viewBox="0 0 128 128"
+ version="1.1"
+ id="svg8"
+ inkscape:export-filename="D:\Bethesda Game Modding\Mod Organizer 2\stylesheets\Paper\Dark\dots.png"
+ inkscape:export-xdpi="307.20001"
+ inkscape:export-ydpi="307.20001"
+ inkscape:version="0.92.1 r15371"
+ sodipodi:docname="profiles.svg">
+ <defs
+ id="defs2" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#505050"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="14.003331"
+ inkscape:cx="54.048348"
+ inkscape:cy="44.931547"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer25"
+ showgrid="false"
+ units="px"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-page="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true"
+ inkscape:snap-bbox-edge-midpoints="true"
+ inkscape:snap-bbox-midpoints="true"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:window-width="1920"
+ inkscape:window-height="1027"
+ inkscape:window-x="-8"
+ inkscape:window-y="-8"
+ inkscape:window-maximized="1"
+ inkscape:snap-center="true"
+ inkscape:snap-object-midpoints="true"
+ inkscape:measure-start="64,11.9981"
+ inkscape:measure-end="64,7.93514"
+ inkscape:snap-intersection-paths="true"
+ inkscape:object-paths="true"
+ inkscape:snap-smooth-nodes="true"
+ inkscape:snap-midpoints="true"
+ inkscape:snap-global="true"
+ inkscape:lockguides="true"
+ inkscape:snap-nodes="false">
+ <sodipodi:guide
+ position="64,64"
+ orientation="1,0"
+ id="guide4039"
+ inkscape:locked="true" />
+ <sodipodi:guide
+ position="64,64"
+ orientation="0,1"
+ id="guide3935"
+ inkscape:locked="true"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer25"
+ inkscape:label="Content"
+ transform="translate(0,108)">
+ <g
+ id="g3856"
+ style="fill:#4e4b42;fill-opacity:1;stroke-width:0.81111115"
+ transform="matrix(1.2328767,0,0,1.2328767,-14.376763,-8.863014)">
+ <circle
+ r="21"
+ cy="-44"
+ cx="64"
+ id="path3874"
+ style="opacity:1;fill:#4e4b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.24444389;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:stroke fill markers" />
+ <path
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0"
+ id="path3858"
+ transform="translate(0,-108)"
+ d="M 63.421875,89.005859 C 48.016021,89.029098 33.691706,97.71624 25.455078,112.03125 29.673503,114.55644 34.640748,116 40,116 h 48 c 5.001681,0 9.660535,-1.26009 13.68945,-3.48047 C 93.502774,97.918077 79.022242,89.020453 63.421875,89.005859 Z"
+ style="opacity:1;fill:#4e4b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.40555558;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:normal" />
+ </g>
+ </g>
+</svg>
diff --git a/src/stylesheets/Paper/Automata/Toolbar/settings.svg b/src/stylesheets/Paper/Automata/Toolbar/settings.svg
new file mode 100644
index 00000000..adc4ca7a
--- /dev/null
+++ b/src/stylesheets/Paper/Automata/Toolbar/settings.svg
@@ -0,0 +1,95 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="128"
+ height="128"
+ viewBox="0 0 128 128"
+ version="1.1"
+ id="svg8"
+ inkscape:export-filename="D:\Bethesda Game Modding\Mod Organizer 2\stylesheets\Paper\Dark\dots.png"
+ inkscape:export-xdpi="307.20001"
+ inkscape:export-ydpi="307.20001"
+ inkscape:version="0.92.1 r15371"
+ sodipodi:docname="settings.svg">
+ <defs
+ id="defs2" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#505050"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="17.011826"
+ inkscape:cx="26.380278"
+ inkscape:cy="24.43076"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer25"
+ showgrid="false"
+ units="px"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-page="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true"
+ inkscape:snap-bbox-edge-midpoints="true"
+ inkscape:snap-bbox-midpoints="true"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:window-width="1920"
+ inkscape:window-height="1027"
+ inkscape:window-x="-8"
+ inkscape:window-y="-8"
+ inkscape:window-maximized="1"
+ inkscape:snap-center="true"
+ inkscape:snap-object-midpoints="true"
+ inkscape:measure-start="8,64"
+ inkscape:measure-end="17.9742,64"
+ inkscape:snap-intersection-paths="true"
+ inkscape:object-paths="true"
+ inkscape:snap-smooth-nodes="true"
+ inkscape:snap-midpoints="true"
+ inkscape:snap-global="true">
+ <sodipodi:guide
+ position="64,64"
+ orientation="1,0"
+ id="guide4039"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="64,64"
+ orientation="0,1"
+ id="guide3854"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer25"
+ inkscape:label="Content"
+ transform="translate(0,108)">
+ <path
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#4e4b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m 55.75,-99 v 4.125 7.809571 c -5.874077,1.121199 -11.426558,3.415826 -16.37915,6.767577 l -8.427247,-8.427246 -11.668701,11.668701 8.429933,8.429932 c -3.36362,4.949109 -5.670511,10.500514 -6.802492,16.376465 H 9 v 16.5 h 11.934571 c 1.121199,5.874077 3.415826,11.426558 6.767577,16.37915 l -8.427246,8.427247 11.668701,11.66870105 8.429933,-8.42993305 c 4.949109,3.36362 10.500513,5.6705116 16.376464,6.80249075 V 11 h 16.5 V -0.93457095 C 78.124077,-2.0557723 83.676558,-4.3503989 88.62915,-7.702148 l 8.42725,8.42724605 11.6687,-11.66870105 -8.42994,-8.429933 c 3.36362,-4.949109 5.67052,-10.500513 6.8025,-16.376464 H 119 v -16.5 h -11.93457 c -1.1212,-5.874077 -3.41582,-11.426558 -6.76757,-16.37915 l 8.42724,-8.427247 -11.6687,-11.668701 -8.429935,8.429932 C 83.677355,-83.658785 78.125951,-85.965676 72.25,-87.097656 V -99 Z M 64,-68.75 c 13.603902,0 24.75,11.146098 24.75,24.75 0,13.603902 -11.146098,24.75 -24.75,24.75 -13.603902,0 -24.75,-11.146098 -24.75,-24.75 0,-13.603902 11.146098,-24.75 24.75,-24.75 z m 0,11 c -0.478691,0 -0.949948,0.02335 -1.415283,0.06982 -6.488691,0.656052 -11.608841,5.776202 -12.264893,12.264893 -1.79e-4,0.0018 1.79e-4,0.0036 0,0.0054 -0.04613,0.463616 -0.06983,0.933021 -0.06983,1.4099 0,0.476656 0.02311,0.946126 0.06982,1.409913 1.76e-4,0.0018 -1.76e-4,0.0036 0,0.0054 0.656052,6.488691 5.776202,11.60884 12.264893,12.264892 0.0018,1.79e-4 0.0035,-1.78e-4 0.0054,0 0.463616,0.04611 0.933021,0.06981 1.4099,0.06981 0.476878,0 0.946282,-0.02369 1.409913,-0.06982 0.0018,-1.78e-4 0.0035,1.78e-4 0.0054,0 6.488691,-0.656052 11.60884,-5.776202 12.264892,-12.264893 0.04705,-0.465516 0.06981,-0.936808 0.06981,-1.41529 0,-0.478482 -0.02276,-0.949774 -0.06982,-1.415283 -0.656052,-6.488691 -5.776203,-11.608841 -12.264894,-12.264893 -0.0018,-1.76e-4 -0.0035,1.76e-4 -0.0054,0 -0.463773,-0.04671 -0.933243,-0.06983 -1.409899,-0.06983 z"
+ id="path3915"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
diff --git a/src/stylesheets/Paper/Automata/Toolbar/tools.svg b/src/stylesheets/Paper/Automata/Toolbar/tools.svg
new file mode 100644
index 00000000..555472e8
--- /dev/null
+++ b/src/stylesheets/Paper/Automata/Toolbar/tools.svg
@@ -0,0 +1,117 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="128"
+ height="128"
+ viewBox="0 0 128 128"
+ version="1.1"
+ id="svg8"
+ inkscape:export-filename="D:\Bethesda Game Modding\Mod Organizer 2\stylesheets\Paper\Dark\dots.png"
+ inkscape:export-xdpi="307.20001"
+ inkscape:export-ydpi="307.20001"
+ inkscape:version="0.92.1 r15371"
+ sodipodi:docname="tools.svg">
+ <defs
+ id="defs2" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#505050"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="9.90185"
+ inkscape:cx="62.575038"
+ inkscape:cy="1.523437"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer25"
+ showgrid="false"
+ units="px"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-page="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true"
+ inkscape:snap-bbox-edge-midpoints="true"
+ inkscape:snap-bbox-midpoints="true"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:window-width="1920"
+ inkscape:window-height="1027"
+ inkscape:window-x="-8"
+ inkscape:window-y="-8"
+ inkscape:window-maximized="1"
+ inkscape:snap-center="true"
+ inkscape:snap-object-midpoints="true"
+ inkscape:measure-start="54,64"
+ inkscape:measure-end="64,64"
+ inkscape:snap-intersection-paths="true"
+ inkscape:object-paths="true"
+ inkscape:snap-smooth-nodes="true"
+ inkscape:snap-midpoints="true"
+ inkscape:snap-global="true"
+ inkscape:bbox-paths="true">
+ <sodipodi:guide
+ position="64,64"
+ orientation="1,0"
+ id="guide4039"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="64,64"
+ orientation="0,1"
+ id="guide3935"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer25"
+ inkscape:label="Content"
+ transform="translate(0,108)">
+ <g
+ id="g3997"
+ transform="matrix(0.55904332,-0.55901902,-0.55904332,-0.55901902,4.4028105,-32.039863)"
+ style="fill:#4e4b42;fill-opacity:1;stroke-width:1.26487899">
+ <path
+ id="path3965"
+ transform="translate(0,-108)"
+ d="M -8,52 A 12,12 0 0 0 -20,64 12,12 0 0 0 -8,76 H 44 V 52 Z"
+ style="opacity:1;fill:#4e4b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.05951595;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:stroke fill markers"
+ inkscape:connector-curvature="0" />
+ <path
+ id="rect3969"
+ transform="translate(0,-108)"
+ d="m 128,53 -18,5 H 84 v 12 h 26 l 18,5 18,-5 V 58 Z"
+ style="opacity:1;fill:#4e4b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.05951595;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:stroke fill markers"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:1;fill:#4e4b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.86491537;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:stroke fill markers"
+ d="m 32.291016,50.410156 c -5.753358,0.0068 -10.878972,3.636181 -12.796875,9.060547 h 12.796875 c 2.50182,-5.4e-5 4.529351,2.027478 4.529296,4.529297 -5.4e-5,2.501819 -2.027476,4.531196 -4.529296,4.53125 H 19.496094 c 1.917396,5.423518 7.042374,9.051114 12.794922,9.058594 5.30786,-0.0064 10.126181,-3.102522 12.33789,-7.927735 H 64 105.23759 v -0.0039 c 0.0293,0.0015 0.0586,0.0028 0.0879,0.0039 3.12696,-3.3e-4 5.66178,-2.535151 5.6621,-5.662109 -3.2e-4,-3.126962 -2.53514,-5.661785 -5.66211,-5.662109 -0.0299,0.0011 -0.0599,0.0024 -0.0898,0.0039 v -0.0039 H 64 44.626953 c -2.211168,-4.82439 -7.028882,-7.920713 -12.335937,-7.927735 z"
+ transform="matrix(-3.8373246e-5,-1.7660262,-1.7660262,-3.8373246e-5,177.02814,69.028134)"
+ id="rect3945"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccsccccccccccccccc" />
+ </g>
+ </g>
+</svg>
diff --git a/src/stylesheets/Paper/Automata/Toolbar/update.svg b/src/stylesheets/Paper/Automata/Toolbar/update.svg
new file mode 100644
index 00000000..28bef275
--- /dev/null
+++ b/src/stylesheets/Paper/Automata/Toolbar/update.svg
@@ -0,0 +1,141 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="128"
+ height="128"
+ viewBox="0 0 128 128"
+ version="1.1"
+ id="svg8"
+ inkscape:export-filename="D:\Bethesda Game Modding\Mod Organizer 2\stylesheets\Paper\Dark\dots.png"
+ inkscape:export-xdpi="307.20001"
+ inkscape:export-ydpi="307.20001"
+ inkscape:version="0.92.1 r15371"
+ sodipodi:docname="update.svg">
+ <defs
+ id="defs2">
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath4152-4-4-9">
+ <rect
+ style="fill:#fdf6e3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+ id="rect4154-6-3-0"
+ width="598.57141"
+ height="928.57141"
+ x="352.85715"
+ y="22.362183" />
+ </clipPath>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#505050"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="7.2039069"
+ inkscape:cx="42.76634"
+ inkscape:cy="57.923463"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer25"
+ showgrid="false"
+ units="px"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-page="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true"
+ inkscape:snap-bbox-edge-midpoints="true"
+ inkscape:snap-bbox-midpoints="true"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:window-width="1920"
+ inkscape:window-height="1027"
+ inkscape:window-x="-8"
+ inkscape:window-y="-8"
+ inkscape:window-maximized="1"
+ inkscape:snap-center="true"
+ inkscape:snap-object-midpoints="true"
+ inkscape:measure-start="18.8975,12.498"
+ inkscape:measure-end="20,12.498"
+ inkscape:snap-intersection-paths="true"
+ inkscape:object-paths="true"
+ inkscape:snap-smooth-nodes="true"
+ inkscape:snap-midpoints="true"
+ inkscape:snap-global="true">
+ <sodipodi:guide
+ position="64,64"
+ orientation="1,0"
+ id="guide4039"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="64,64"
+ orientation="0,1"
+ id="guide3935"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer25"
+ inkscape:label="Content"
+ transform="translate(0,108)">
+ <g
+ id="g4217-3-45"
+ transform="matrix(0.50121193,0,0,0.50121193,-6.8260092,-112.83314)"
+ style="display:inline;fill:#4e4b42;fill-opacity:1"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <g
+ style="display:none;fill:#4e4b42;fill-opacity:1"
+ transform="translate(0,-783.36216)"
+ id="layer1-9-66"
+ inkscape:label="Reference">
+ <image
+ width="269"
+ height="269"
+ preserveAspectRatio="none"
+ xlink:href="data:image/png;base64,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 "
+ id="image4166-8-4"
+ x="0"
+ y="793.00507"
+ style="fill:#4e4b42;fill-opacity:1" />
+ </g>
+ <g
+ style="display:inline;fill:#4e4b42;fill-opacity:1"
+ inkscape:label="Trace"
+ id="layer2-9-1-52">
+ <g
+ id="g4216-4-8"
+ style="fill:#4e4b42;fill-opacity:1">
+ <path
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#4e4b42;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:45.99133301;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="M 32.360048,65.606228 A 18.742595,18.742595 0 0 0 13.619017,84.347257 v 52.986143 52.98616 a 18.742595,18.742595 0 0 0 18.741031,18.74102 h 66.931502 52.98614 a 18.742595,18.742595 0 0 0 14.56367,-6.9571 c 9.39466,4.42246 19.71589,6.94877 30.41586,6.9571 a 18.742595,18.742595 0 0 0 0.0133,0 c 39.39268,0.001 71.72926,-32.3342 71.72947,-71.72718 -2.1e-4,-39.392981 -32.33679,-71.728471 -71.72977,-71.727172 a 18.742595,18.742595 0 0 0 -0.0106,0 c -18.56058,0.0092 -35.9395,7.273903 -48.98023,19.491814 C 135.2392,72.880337 117.85926,65.616053 99.29911,65.606228 a 18.742595,18.742595 0 0 0 -0.008,0 z M 32.20937,84.347257 H 99.14088 A 52.987154,52.987154 0 0 1 148.1289,117.2103 52.987154,52.987154 0 0 1 197.12213,84.347257 52.987154,52.987154 0 0 1 250.11087,137.3334 52.987154,52.987154 0 0 1 197.12213,190.31956 52.987154,52.987154 0 0 1 152.12702,165.2527 v 25.06686 H 99.14088 32.20937 V 137.3334 Z"
+ id="path4176-3-9"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </g>
+ </g>
+</svg>
diff --git a/src/stylesheets/Paper/Automata/background.svg b/src/stylesheets/Paper/Automata/background.svg
new file mode 100644
index 00000000..76468b68
--- /dev/null
+++ b/src/stylesheets/Paper/Automata/background.svg
@@ -0,0 +1,99 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="7"
+ height="7"
+ viewBox="0 0 7 7"
+ version="1.1"
+ id="svg8"
+ inkscape:export-filename="D:\Bethesda Game Modding\Mod Organizer 2\stylesheets\Paper\Dark\dots.png"
+ inkscape:export-xdpi="307.20001"
+ inkscape:export-ydpi="307.20001"
+ inkscape:version="0.92.1 r15371"
+ sodipodi:docname="background.svg">
+ <defs
+ id="defs2" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#505050"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="63.914764"
+ inkscape:cx="9.5445856"
+ inkscape:cy="4.6988181"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer25"
+ showgrid="false"
+ units="px"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-page="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true"
+ inkscape:snap-bbox-edge-midpoints="true"
+ inkscape:snap-bbox-midpoints="true"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:window-width="1920"
+ inkscape:window-height="1027"
+ inkscape:window-x="-8"
+ inkscape:window-y="-8"
+ inkscape:window-maximized="1"
+ inkscape:snap-center="true"
+ inkscape:snap-object-midpoints="true"
+ inkscape:measure-start="-15.1166,28.7091"
+ inkscape:measure-end="-12,31"
+ inkscape:snap-intersection-paths="true"
+ inkscape:object-paths="true"
+ inkscape:snap-smooth-nodes="true"
+ inkscape:snap-midpoints="true"
+ inkscape:snap-global="true"
+ inkscape:bbox-paths="true">
+ <sodipodi:guide
+ position="14,14"
+ orientation="0,1"
+ id="guide4010"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer25"
+ inkscape:label="Content"
+ transform="translate(0,-13)">
+ <path
+ sodipodi:nodetypes="cccccc"
+ inkscape:connector-curvature="0"
+ id="path3876"
+ d="M 0,13 V 14.399999 20 h 7 v -7 z"
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#c6c1ab;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:stroke fill markers;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
+ <rect
+ style="opacity:1;fill:#cbc6b0;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:stroke fill markers"
+ id="rect4092"
+ width="5"
+ height="5"
+ x="1"
+ y="14" />
+ </g>
+</svg>
diff --git a/src/stylesheets/Paper/Automata/backup.svg b/src/stylesheets/Paper/Automata/backup.svg
new file mode 100644
index 00000000..1c55c45f
--- /dev/null
+++ b/src/stylesheets/Paper/Automata/backup.svg
@@ -0,0 +1,126 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="20"
+ height="20"
+ viewBox="0 0 20 20"
+ version="1.1"
+ id="svg8"
+ inkscape:export-filename="D:\Bethesda Game Modding\Mod Organizer 2\stylesheets\Paper\Dark\dots.png"
+ inkscape:export-xdpi="307.20001"
+ inkscape:export-ydpi="307.20001"
+ inkscape:version="0.92.1 r15371"
+ sodipodi:docname="backup.svg">
+ <defs
+ id="defs2" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#505050"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="11.29864"
+ inkscape:cx="-6.8920047"
+ inkscape:cy="14.09106"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer25"
+ showgrid="false"
+ units="px"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-page="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true"
+ inkscape:snap-bbox-edge-midpoints="true"
+ inkscape:snap-bbox-midpoints="true"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:window-width="1920"
+ inkscape:window-height="1027"
+ inkscape:window-x="-8"
+ inkscape:window-y="-8"
+ inkscape:window-maximized="1"
+ inkscape:snap-center="true"
+ inkscape:snap-object-midpoints="true"
+ inkscape:measure-start="18.8975,12.498"
+ inkscape:measure-end="20,12.498"
+ inkscape:snap-intersection-paths="true"
+ inkscape:object-paths="true"
+ inkscape:snap-smooth-nodes="true"
+ inkscape:snap-midpoints="true"
+ inkscape:snap-global="true">
+ <sodipodi:guide
+ position="10,10"
+ orientation="1,0"
+ id="guide4039"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="10,10"
+ orientation="0,1"
+ id="guide3935"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer25"
+ inkscape:label="Content">
+ <g
+ id="g3865"
+ style="fill:#4d4a41;fill-opacity:1">
+ <path
+ id="rect3928"
+ d="M 0 0 L 0 3 L 0 6 L 3 6 L 3 3 L 17 3 L 17 6 L 20 6 L 20 3 L 20 0 L 0 0 z "
+ style="opacity:1;fill:#4d4a41;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.40999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:normal" />
+ <g
+ id="g3858"
+ style="fill:#4d4a41;fill-opacity:1">
+ <rect
+ y="-12.83"
+ x="-20"
+ height="5.6599998"
+ width="13.981334"
+ id="rect3930"
+ style="opacity:1;fill:#4d4a41;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.40999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:normal"
+ transform="matrix(0,-1,-1,0,0,0)" />
+ <path
+ sodipodi:type="star"
+ style="opacity:1;fill:#4d4a41;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.83595276;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:normal"
+ id="path3932"
+ sodipodi:sides="3"
+ sodipodi:cx="8.9146461"
+ sodipodi:cy="9.684866"
+ sodipodi:r1="4.0292788"
+ sodipodi:r2="2.0146394"
+ sodipodi:arg1="-1.5707963"
+ sodipodi:arg2="-0.52359878"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 8.9146463,5.6555872 3.4894577,6.0439178 -6.9789157,0 z"
+ inkscape:transform-center-y="-1.3333344"
+ transform="matrix(-2.1493311,0,0,1.3236446,29.160526,-4.4859875)" />
+ </g>
+ </g>
+ </g>
+</svg>
diff --git a/src/stylesheets/Paper/Automata/branch.svg b/src/stylesheets/Paper/Automata/branch.svg
new file mode 100644
index 00000000..edabfeab
--- /dev/null
+++ b/src/stylesheets/Paper/Automata/branch.svg
@@ -0,0 +1,99 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="20"
+ height="20"
+ viewBox="0 0 20 20"
+ version="1.1"
+ id="svg8"
+ inkscape:export-filename="D:\Bethesda Game Modding\Mod Organizer 2\stylesheets\Paper\Dark\dots.png"
+ inkscape:export-xdpi="307.20001"
+ inkscape:export-ydpi="307.20001"
+ inkscape:version="0.92.1 r15371"
+ sodipodi:docname="branch.svg">
+ <defs
+ id="defs2" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#505050"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="19.449279"
+ inkscape:cx="15.344006"
+ inkscape:cy="13.455246"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer25"
+ showgrid="false"
+ units="px"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-page="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true"
+ inkscape:snap-bbox-edge-midpoints="true"
+ inkscape:snap-bbox-midpoints="true"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:window-width="1920"
+ inkscape:window-height="1027"
+ inkscape:window-x="-8"
+ inkscape:window-y="-8"
+ inkscape:window-maximized="1"
+ inkscape:snap-center="true"
+ inkscape:snap-object-midpoints="true"
+ inkscape:measure-start="18.8975,12.498"
+ inkscape:measure-end="20,12.498"
+ inkscape:snap-intersection-paths="true"
+ inkscape:object-paths="true"
+ inkscape:snap-smooth-nodes="true"
+ inkscape:snap-midpoints="true"
+ inkscape:snap-global="true">
+ <sodipodi:guide
+ position="10,10"
+ orientation="1,0"
+ id="guide4039"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="10,10"
+ orientation="0,1"
+ id="guide3935"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer25"
+ inkscape:label="Content">
+ <g
+ id="g3867"
+ transform="matrix(2,0,0,2,-11.124285,-10)"
+ style="stroke-width:0.5;fill:#b4af9a;fill-opacity:1">
+ <path
+ style="opacity:1;fill:#b4af9a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:stroke fill markers"
+ d="M 4 0 L 4 20 L 10 20 L 10 0 L 4 0 z M 14 0 L 14 20 L 16 20 L 16 0 L 14 0 z "
+ transform="matrix(0.5,0,0,0.5,5.5621425,5)"
+ id="rect3861" />
+ </g>
+ </g>
+</svg>
diff --git a/src/stylesheets/Paper/Automata/collapsed.svg b/src/stylesheets/Paper/Automata/collapsed.svg
new file mode 100644
index 00000000..614cca6b
--- /dev/null
+++ b/src/stylesheets/Paper/Automata/collapsed.svg
@@ -0,0 +1,97 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="14"
+ height="14"
+ viewBox="0 0 14 14"
+ version="1.1"
+ id="svg8"
+ inkscape:export-filename="D:\Bethesda Game Modding\Mod Organizer 2\stylesheets\Paper\Dark\dots.png"
+ inkscape:export-xdpi="307.20001"
+ inkscape:export-ydpi="307.20001"
+ inkscape:version="0.92.1 r15371"
+ sodipodi:docname="collapsed.svg">
+ <defs
+ id="defs2" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#505050"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="26.733251"
+ inkscape:cx="5.8544957"
+ inkscape:cy="4.1342917"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer25"
+ showgrid="false"
+ units="px"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-page="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true"
+ inkscape:snap-bbox-edge-midpoints="true"
+ inkscape:snap-bbox-midpoints="true"
+ showguides="false"
+ inkscape:guide-bbox="true"
+ inkscape:window-width="1920"
+ inkscape:window-height="1027"
+ inkscape:window-x="-8"
+ inkscape:window-y="-8"
+ inkscape:window-maximized="1"
+ inkscape:snap-center="true"
+ inkscape:snap-object-midpoints="true"
+ inkscape:measure-start="2,12"
+ inkscape:measure-end="0,12"
+ inkscape:snap-intersection-paths="true"
+ inkscape:object-paths="true"
+ inkscape:snap-smooth-nodes="true"
+ inkscape:snap-midpoints="true"
+ inkscape:snap-global="true">
+ <sodipodi:guide
+ position="7,7"
+ orientation="1,0"
+ id="guide4039"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="7,7"
+ orientation="0,1"
+ id="guide3935"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer25"
+ inkscape:label="Content"
+ transform="translate(0,-6)">
+ <path
+ style="opacity:1;fill:#4d4a41;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:stroke fill markers"
+ d="M 0 0 L 0 14 L 14 14 L 14 0 L 0 0 z M 6 4 L 8 4 L 8 6 L 10 6 L 10 8 L 8 8 L 8 10 L 6 10 L 6 8 L 4 8 L 4 6 L 6 6 L 6 4 z "
+ transform="translate(0,6)"
+ id="rect3848" />
+ </g>
+</svg>
diff --git a/src/stylesheets/Paper/Automata/cross.svg b/src/stylesheets/Paper/Automata/cross.svg
new file mode 100644
index 00000000..450623c3
--- /dev/null
+++ b/src/stylesheets/Paper/Automata/cross.svg
@@ -0,0 +1,94 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="20"
+ height="20"
+ viewBox="0 0 20 20"
+ version="1.1"
+ id="svg8"
+ inkscape:export-filename="D:\Bethesda Game Modding\Mod Organizer 2\stylesheets\Paper\Dark\dots.png"
+ inkscape:export-xdpi="307.20001"
+ inkscape:export-ydpi="307.20001"
+ inkscape:version="0.92.1 r15371"
+ sodipodi:docname="cross.svg">
+ <defs
+ id="defs2" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#505050"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="46.5"
+ inkscape:cx="10"
+ inkscape:cy="10"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer25"
+ showgrid="false"
+ units="px"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-page="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true"
+ inkscape:snap-bbox-edge-midpoints="true"
+ inkscape:snap-bbox-midpoints="true"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:window-width="1920"
+ inkscape:window-height="1027"
+ inkscape:window-x="-8"
+ inkscape:window-y="-8"
+ inkscape:window-maximized="1"
+ inkscape:snap-center="true"
+ inkscape:snap-object-midpoints="true"
+ inkscape:measure-start="18.8975,12.498"
+ inkscape:measure-end="20,12.498"
+ inkscape:snap-intersection-paths="true"
+ inkscape:object-paths="true"
+ inkscape:snap-smooth-nodes="true"
+ inkscape:snap-midpoints="true"
+ inkscape:snap-global="true">
+ <sodipodi:guide
+ position="10,10"
+ orientation="1,0"
+ id="guide4039"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="10,10"
+ orientation="0,1"
+ id="guide3935"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer25"
+ inkscape:label="Content">
+ <path
+ style="display:inline;opacity:1;fill:#4d4a41;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:169.70561218;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.93939996;stroke-opacity:1;paint-order:markers stroke fill"
+ d="m 4,1.5e-7 -4,3.99999995 2,2 L 6,10 l -4,4 -2,2 4,4 2,-2 4,-4 4,4 2,2 4,-4 -2,-2 -4,-4 4,-3.9999999 2,-2 L 16,1.5e-7 14,2.0000002 10,6.0000001 6,2.0000002 Z"
+ id="path3944"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
diff --git a/src/stylesheets/Paper/Automata/dots.svg b/src/stylesheets/Paper/Automata/dots.svg
new file mode 100644
index 00000000..08d5139f
--- /dev/null
+++ b/src/stylesheets/Paper/Automata/dots.svg
@@ -0,0 +1,111 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="20"
+ height="20"
+ viewBox="0 0 20 20"
+ version="1.1"
+ id="svg8"
+ inkscape:export-filename="D:\Bethesda Game Modding\Mod Organizer 2\stylesheets\Paper\Dark\dots.png"
+ inkscape:export-xdpi="307.20001"
+ inkscape:export-ydpi="307.20001"
+ inkscape:version="0.92.1 r15371"
+ sodipodi:docname="dots.svg">
+ <defs
+ id="defs2" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#505050"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="46.5"
+ inkscape:cx="10"
+ inkscape:cy="10"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer25"
+ showgrid="false"
+ units="px"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-page="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true"
+ inkscape:snap-bbox-edge-midpoints="true"
+ inkscape:snap-bbox-midpoints="true"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:window-width="1920"
+ inkscape:window-height="1027"
+ inkscape:window-x="-8"
+ inkscape:window-y="-8"
+ inkscape:window-maximized="1"
+ inkscape:snap-center="true"
+ inkscape:snap-object-midpoints="true"
+ inkscape:measure-start="18.8975,12.498"
+ inkscape:measure-end="20,12.498"
+ inkscape:snap-intersection-paths="true"
+ inkscape:object-paths="true"
+ inkscape:snap-smooth-nodes="true"
+ inkscape:snap-midpoints="true"
+ inkscape:snap-global="true">
+ <sodipodi:guide
+ position="10,10"
+ orientation="1,0"
+ id="guide4039"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="10,10"
+ orientation="0,1"
+ id="guide3935"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer25"
+ inkscape:label="Content">
+ <g
+ id="g3853"
+ style="fill:#4d4a41;fill-opacity:1">
+ <circle
+ r="2.5"
+ cy="10"
+ cx="10"
+ id="path4063"
+ style="opacity:1;fill:#4d4a41;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.99999952;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:stroke fill markers" />
+ <circle
+ style="opacity:1;fill:#4d4a41;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.99999952;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:stroke fill markers"
+ id="circle3937"
+ cx="17.5"
+ cy="10"
+ r="2.5" />
+ <circle
+ r="2.5"
+ cy="10"
+ cx="2.5"
+ id="circle3939"
+ style="opacity:1;fill:#4d4a41;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.99999952;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:stroke fill markers" />
+ </g>
+ </g>
+</svg>
diff --git a/src/stylesheets/Paper/Automata/expanded.svg b/src/stylesheets/Paper/Automata/expanded.svg
new file mode 100644
index 00000000..19f776d3
--- /dev/null
+++ b/src/stylesheets/Paper/Automata/expanded.svg
@@ -0,0 +1,104 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="14"
+ height="14"
+ viewBox="0 0 14 14"
+ version="1.1"
+ id="svg8"
+ inkscape:export-filename="D:\Bethesda Game Modding\Mod Organizer 2\stylesheets\Paper\Dark\dots.png"
+ inkscape:export-xdpi="307.20001"
+ inkscape:export-ydpi="307.20001"
+ inkscape:version="0.92.1 r15371"
+ sodipodi:docname="expanded.svg">
+ <defs
+ id="defs2" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#505050"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="14.407815"
+ inkscape:cx="5.5919938"
+ inkscape:cy="2.0247774"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer25"
+ showgrid="false"
+ units="px"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-page="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true"
+ inkscape:snap-bbox-edge-midpoints="true"
+ inkscape:snap-bbox-midpoints="true"
+ showguides="false"
+ inkscape:guide-bbox="true"
+ inkscape:window-width="1920"
+ inkscape:window-height="1027"
+ inkscape:window-x="-8"
+ inkscape:window-y="-8"
+ inkscape:window-maximized="1"
+ inkscape:snap-center="true"
+ inkscape:snap-object-midpoints="true"
+ inkscape:measure-start="2,12"
+ inkscape:measure-end="0,12"
+ inkscape:snap-intersection-paths="true"
+ inkscape:object-paths="true"
+ inkscape:snap-smooth-nodes="true"
+ inkscape:snap-midpoints="true"
+ inkscape:snap-global="true">
+ <sodipodi:guide
+ position="7,7"
+ orientation="1,0"
+ id="guide4039"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="7,7"
+ orientation="0,1"
+ id="guide3935"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer25"
+ inkscape:label="Content"
+ transform="translate(0,-6)">
+ <path
+ style="opacity:1;fill:#4d4a41;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:stroke fill markers"
+ d="M 0 0 L 0 14 L 14 14 L 14 0 L 0 0 z M 2 2 L 12 2 L 12 12 L 2 12 L 2 2 z "
+ transform="translate(0,6)"
+ id="rect3848" />
+ <rect
+ style="opacity:1;fill:#4d4a41;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.99999976;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:stroke fill markers"
+ id="rect3849"
+ width="6"
+ height="2"
+ x="4"
+ y="12" />
+ </g>
+</svg>
diff --git a/src/stylesheets/Paper/Automata/folder.svg b/src/stylesheets/Paper/Automata/folder.svg
new file mode 100644
index 00000000..4ac83f47
--- /dev/null
+++ b/src/stylesheets/Paper/Automata/folder.svg
@@ -0,0 +1,94 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="20"
+ height="20"
+ viewBox="0 0 20 20"
+ version="1.1"
+ id="svg8"
+ inkscape:export-filename="D:\Bethesda Game Modding\Mod Organizer 2\stylesheets\Paper\Dark\dots.png"
+ inkscape:export-xdpi="307.20001"
+ inkscape:export-ydpi="307.20001"
+ inkscape:version="0.92.1 r15371"
+ sodipodi:docname="folder.svg">
+ <defs
+ id="defs2" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#505050"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="46.5"
+ inkscape:cx="10"
+ inkscape:cy="10"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer25"
+ showgrid="false"
+ units="px"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-page="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true"
+ inkscape:snap-bbox-edge-midpoints="true"
+ inkscape:snap-bbox-midpoints="true"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:window-width="1920"
+ inkscape:window-height="1027"
+ inkscape:window-x="-8"
+ inkscape:window-y="-8"
+ inkscape:window-maximized="1"
+ inkscape:snap-center="true"
+ inkscape:snap-object-midpoints="true"
+ inkscape:measure-start="18.8975,12.498"
+ inkscape:measure-end="20,12.498"
+ inkscape:snap-intersection-paths="true"
+ inkscape:object-paths="true"
+ inkscape:snap-smooth-nodes="true"
+ inkscape:snap-midpoints="true"
+ inkscape:snap-global="true">
+ <sodipodi:guide
+ position="10,10"
+ orientation="1,0"
+ id="guide4039"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="10,10"
+ orientation="0,1"
+ id="guide3935"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer25"
+ inkscape:label="Content">
+ <path
+ style="display:inline;opacity:1;fill:#4d4a41;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:normal"
+ d="M 12,2.0000002 10,4.0000001 H 2.5e-7 V 18 H 20 V 4.0000001 L 18,2.0000002 h -3 z"
+ id="rect3909"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
diff --git a/src/stylesheets/Paper/Automata/heart.svg b/src/stylesheets/Paper/Automata/heart.svg
new file mode 100644
index 00000000..396fab55
--- /dev/null
+++ b/src/stylesheets/Paper/Automata/heart.svg
@@ -0,0 +1,111 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="20"
+ height="20"
+ viewBox="0 0 20 20"
+ version="1.1"
+ id="svg8"
+ inkscape:export-filename="D:\Bethesda Game Modding\Mod Organizer 2\stylesheets\Paper\Dark\dots.png"
+ inkscape:export-xdpi="307.20001"
+ inkscape:export-ydpi="307.20001"
+ inkscape:version="0.92.1 r15371"
+ sodipodi:docname="heart.svg">
+ <defs
+ id="defs2" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#505050"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="46.5"
+ inkscape:cx="10"
+ inkscape:cy="10"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer25"
+ showgrid="false"
+ units="px"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-page="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true"
+ inkscape:snap-bbox-edge-midpoints="true"
+ inkscape:snap-bbox-midpoints="true"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:window-width="1920"
+ inkscape:window-height="1027"
+ inkscape:window-x="-8"
+ inkscape:window-y="-8"
+ inkscape:window-maximized="1"
+ inkscape:snap-center="true"
+ inkscape:snap-object-midpoints="true"
+ inkscape:measure-start="18.8975,12.498"
+ inkscape:measure-end="20,12.498"
+ inkscape:snap-intersection-paths="true"
+ inkscape:object-paths="true"
+ inkscape:snap-smooth-nodes="true"
+ inkscape:snap-midpoints="true"
+ inkscape:snap-global="true">
+ <sodipodi:guide
+ position="10,10"
+ orientation="1,0"
+ id="guide4039"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="10,10"
+ orientation="0,1"
+ id="guide3935"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer25"
+ inkscape:label="Content">
+ <g
+ style="display:inline;fill:#4d4a41;fill-opacity:1"
+ id="g4198"
+ transform="translate(0,1)">
+ <circle
+ r="5.5"
+ cy="5.5"
+ cx="5.5"
+ id="path4174"
+ style="opacity:1;fill:#4d4a41;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:5.99999952;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:normal" />
+ <circle
+ r="5.5"
+ style="opacity:1;fill:#4d4a41;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:normal"
+ id="circle4176"
+ cx="14.5"
+ cy="5.5" />
+ <path
+ id="path4178"
+ d="M 0,5.5 C 0,10.950465 5.8158604,15.070234 10,18 14.18414,15.070234 20,10.950465 20,5.5 H 10 Z"
+ style="fill:#4d4a41;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999994px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+</svg>
diff --git a/src/stylesheets/Paper/Automata/refresh.svg b/src/stylesheets/Paper/Automata/refresh.svg
new file mode 100644
index 00000000..a148aa1d
--- /dev/null
+++ b/src/stylesheets/Paper/Automata/refresh.svg
@@ -0,0 +1,103 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="20"
+ height="20"
+ viewBox="0 0 20 20"
+ version="1.1"
+ id="svg8"
+ inkscape:export-filename="D:\Bethesda Game Modding\Mod Organizer 2\stylesheets\Paper\Dark\dots.png"
+ inkscape:export-xdpi="307.20001"
+ inkscape:export-ydpi="307.20001"
+ inkscape:version="0.92.1 r15371"
+ sodipodi:docname="refresh.svg">
+ <defs
+ id="defs2" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#505050"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="46.5"
+ inkscape:cx="10"
+ inkscape:cy="10"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer25"
+ showgrid="false"
+ units="px"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-page="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true"
+ inkscape:snap-bbox-edge-midpoints="true"
+ inkscape:snap-bbox-midpoints="true"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:window-width="1920"
+ inkscape:window-height="1027"
+ inkscape:window-x="-8"
+ inkscape:window-y="-8"
+ inkscape:window-maximized="1"
+ inkscape:snap-center="true"
+ inkscape:snap-object-midpoints="true"
+ inkscape:measure-start="18.8975,12.498"
+ inkscape:measure-end="20,12.498"
+ inkscape:snap-intersection-paths="true"
+ inkscape:object-paths="true"
+ inkscape:snap-smooth-nodes="true"
+ inkscape:snap-midpoints="true"
+ inkscape:snap-global="true">
+ <sodipodi:guide
+ position="10,10"
+ orientation="1,0"
+ id="guide4039"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="10,10"
+ orientation="0,1"
+ id="guide3935"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer25"
+ inkscape:label="Content">
+ <g
+ style="display:inline;fill:#4d4a41;fill-opacity:1"
+ id="g3986">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4137"
+ d="M 0,11.998047 V 20 L 2.9335938,17.066406 A 10,10 0 0 0 10,20 10,10 0 0 0 19.787109,11.998047 H 16.705078 A 7,7 0 0 1 10,17 7,7 0 0 1 5.0527344,14.947266 L 8,11.998047 Z"
+ style="opacity:1;fill:#4d4a41;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:normal" />
+ <path
+ inkscape:connector-curvature="0"
+ id="rect4142"
+ d="M 10,0 A 10,10 0 0 0 0.21289062,8.0019531 H 3.2949219 A 7,7 0 0 1 10,3 7,7 0 0 1 14.947266,5.0527344 L 12,8.0019531 h 8 V 0 L 17.066406,2.9335938 A 10,10 0 0 0 10,0 Z"
+ style="opacity:1;fill:#4d4a41;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:normal" />
+ </g>
+ </g>
+</svg>
diff --git a/src/stylesheets/Paper/Automata/restore-alt.svg b/src/stylesheets/Paper/Automata/restore-alt.svg
new file mode 100644
index 00000000..79f96c1a
--- /dev/null
+++ b/src/stylesheets/Paper/Automata/restore-alt.svg
@@ -0,0 +1,126 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="20"
+ height="20"
+ viewBox="0 0 20 20"
+ version="1.1"
+ id="svg8"
+ inkscape:export-filename="D:\Bethesda Game Modding\Mod Organizer 2\stylesheets\Paper\Dark\dots.png"
+ inkscape:export-xdpi="307.20001"
+ inkscape:export-ydpi="307.20001"
+ inkscape:version="0.92.1 r15371"
+ sodipodi:docname="restore-alt.svg">
+ <defs
+ id="defs2" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#505050"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="90.389123"
+ inkscape:cx="14.98971"
+ inkscape:cy="2.6868089"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer25"
+ showgrid="false"
+ units="px"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-page="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true"
+ inkscape:snap-bbox-edge-midpoints="true"
+ inkscape:snap-bbox-midpoints="true"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:window-width="1920"
+ inkscape:window-height="1027"
+ inkscape:window-x="-8"
+ inkscape:window-y="-8"
+ inkscape:window-maximized="1"
+ inkscape:snap-center="true"
+ inkscape:snap-object-midpoints="true"
+ inkscape:measure-start="18.8975,12.498"
+ inkscape:measure-end="20,12.498"
+ inkscape:snap-intersection-paths="true"
+ inkscape:object-paths="true"
+ inkscape:snap-smooth-nodes="true"
+ inkscape:snap-midpoints="true"
+ inkscape:snap-global="true">
+ <sodipodi:guide
+ position="10,10"
+ orientation="1,0"
+ id="guide4039"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="10,10"
+ orientation="0,1"
+ id="guide3935"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer25"
+ inkscape:label="Content">
+ <g
+ id="g3866"
+ style="fill:#4d4a41;fill-opacity:1;stroke:none">
+ <path
+ id="rect3928"
+ d="M 0 14 L 0 17 L 0 20 L 20 20 L 20 17 L 20 14 L 17 14 L 17 17 L 3 17 L 3 14 L 0 14 z "
+ style="opacity:1;fill:#4d4a41;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.40999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:normal" />
+ <g
+ id="g3860"
+ style="fill:#4d4a41;fill-opacity:1;stroke:none">
+ <rect
+ y="-12.83"
+ x="7.85585e-016"
+ height="5.6599998"
+ width="13.981334"
+ id="rect3930"
+ style="opacity:1;fill:#4d4a41;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.40999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:normal"
+ transform="rotate(90)" />
+ <path
+ sodipodi:type="star"
+ style="opacity:1;fill:#4d4a41;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.83595276;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:normal"
+ id="path3932"
+ sodipodi:sides="3"
+ sodipodi:cx="8.9146461"
+ sodipodi:cy="9.684866"
+ sodipodi:r1="4.0292788"
+ sodipodi:r2="2.0146394"
+ sodipodi:arg1="-1.5707963"
+ sodipodi:arg2="-0.52359878"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 8.9146463,5.6555872 3.4894577,6.0439178 -6.9789157,0 z"
+ inkscape:transform-center-y="-1.3333344"
+ transform="matrix(-2.1493311,0,0,-1.3236446,29.160526,24.485987)" />
+ </g>
+ </g>
+ </g>
+</svg>
diff --git a/src/stylesheets/Paper/Automata/restore.svg b/src/stylesheets/Paper/Automata/restore.svg
new file mode 100644
index 00000000..b5fbbee1
--- /dev/null
+++ b/src/stylesheets/Paper/Automata/restore.svg
@@ -0,0 +1,94 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="20"
+ height="20"
+ viewBox="0 0 20 20"
+ version="1.1"
+ id="svg8"
+ inkscape:export-filename="D:\Bethesda Game Modding\Mod Organizer 2\stylesheets\Paper\Dark\dots.png"
+ inkscape:export-xdpi="307.20001"
+ inkscape:export-ydpi="307.20001"
+ inkscape:version="0.92.1 r15371"
+ sodipodi:docname="restore.svg">
+ <defs
+ id="defs2" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#505050"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="46.5"
+ inkscape:cx="10"
+ inkscape:cy="10"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer25"
+ showgrid="false"
+ units="px"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-page="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true"
+ inkscape:snap-bbox-edge-midpoints="true"
+ inkscape:snap-bbox-midpoints="true"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:window-width="1920"
+ inkscape:window-height="1027"
+ inkscape:window-x="-8"
+ inkscape:window-y="-8"
+ inkscape:window-maximized="1"
+ inkscape:snap-center="true"
+ inkscape:snap-object-midpoints="true"
+ inkscape:measure-start="18.8975,12.498"
+ inkscape:measure-end="20,12.498"
+ inkscape:snap-intersection-paths="true"
+ inkscape:object-paths="true"
+ inkscape:snap-smooth-nodes="true"
+ inkscape:snap-midpoints="true"
+ inkscape:snap-global="true">
+ <sodipodi:guide
+ position="10,10"
+ orientation="1,0"
+ id="guide4039"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="10,10"
+ orientation="0,1"
+ id="guide3935"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer25"
+ inkscape:label="Content">
+ <path
+ style="opacity:1;fill:#4d4a41;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:stroke fill markers"
+ d="m 10,-2.5e-7 a 10,10 0 0 1 0.998047,0.05078 A 10,10 0 0 1 19.787109,8.0019518 10,10 0 0 1 20,10 10,10 0 0 1 10,20 10,10 0 0 1 0.2128895,11.998047 h 3.082032 A 7,7 0 0 0 10,17 a 7,7 0 0 0 7,-7 7,7 0 0 0 -0.294922,-1.9980473 7,7 0 0 0 -0.53125,-1.291016 7,7 0 0 0 0,-0.0019 7,7 0 0 0 -0.359375,-0.599609 7,7 0 0 0 -0.417969,-0.5625 7,7 0 0 0 -0.40625,-0.447266 7,7 0 0 0 -0.07422,-0.07813 7,7 0 0 0 -0.435547,-0.390625 7,7 0 0 0 -0.08594,-0.07422 7,7 0 0 0 -0.490234,-0.359375 7,7 0 0 0 -0.07227,-0.05078 7,7 0 0 0 -0.49023,-0.289062 7,7 0 0 0 -0.119141,-0.06836 7,7 0 0 0 -0.439453,-0.203125 7,7 0 0 0 -0.207031,-0.0918 7,7 0 0 0 -0.402344,-0.138672 7,7 0 0 0 -0.259766,-0.08594 7,7 0 0 0 -0.466797,-0.109375 7,7 0 0 0 -0.208984,-0.04687 7,7 0 0 0 -0.458984,-0.06055 7,7 0 0 0 -0.246094,-0.03125 A 7,7 0 0 0 10,2.9999997 a 7,7 0 0 0 -2.06836,0.314453 7,7 0 0 0 -0.0019,0 7,7 0 0 0 -0.654297,0.240234 7,7 0 0 0 -0.0019,0 7,7 0 0 0 -0.628906,0.304688 7,7 0 0 0 -1.587891,1.197266 L 8,8.0019527 H 3.2968745 0.2031245 -5e-7 V -2.5e-7 l 2.933594,2.93359395 a 10,10 0 0 1 0.01172,-0.01172 10,10 0 0 1 0.591797,-0.535156 10,10 0 0 1 0.169922,-0.148438 10,10 0 0 1 0.6015635,-0.447265 10,10 0 0 1 0.199218,-0.142579 10,10 0 0 1 0.644532,-0.380859 10,10 0 0 1 0.222656,-0.126953 10,10 0 0 1 0.632812,-0.29492195 10,10 0 0 1 0.283204,-0.126953 10,10 0 0 1 0.623046,-0.216797 10,10 0 0 1 0.328125,-0.109375 10,10 0 0 1 0.601563,-0.144531 10,10 0 0 1 0.375,-0.08398 10,10 0 0 1 0.603516,-0.08203 10,10 0 0 1 0.394531,-0.04883 A 10,10 0 0 1 10,-2.5e-7 Z"
+ id="path3956"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
diff --git a/src/stylesheets/Paper/Automata/run.svg b/src/stylesheets/Paper/Automata/run.svg
new file mode 100644
index 00000000..e969e49f
--- /dev/null
+++ b/src/stylesheets/Paper/Automata/run.svg
@@ -0,0 +1,109 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="128"
+ height="128"
+ viewBox="0 0 128 128"
+ version="1.1"
+ id="svg8"
+ inkscape:export-filename="D:\Bethesda Game Modding\Mod Organizer 2\stylesheets\Paper\Dark\dots.png"
+ inkscape:export-xdpi="307.20001"
+ inkscape:export-ydpi="307.20001"
+ inkscape:version="0.92.1 r15371"
+ sodipodi:docname="run.svg">
+ <defs
+ id="defs2" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#505050"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="11.298641"
+ inkscape:cx="8.3473457"
+ inkscape:cy="69.793752"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer25"
+ showgrid="false"
+ units="px"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-page="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true"
+ inkscape:snap-bbox-edge-midpoints="true"
+ inkscape:snap-bbox-midpoints="true"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:window-width="1920"
+ inkscape:window-height="1027"
+ inkscape:window-x="-8"
+ inkscape:window-y="-8"
+ inkscape:window-maximized="1"
+ inkscape:snap-center="true"
+ inkscape:snap-object-midpoints="true"
+ inkscape:measure-start="18.8975,12.498"
+ inkscape:measure-end="20,12.498"
+ inkscape:snap-intersection-paths="true"
+ inkscape:object-paths="true"
+ inkscape:snap-smooth-nodes="true"
+ inkscape:snap-midpoints="true"
+ inkscape:snap-global="true">
+ <sodipodi:guide
+ position="64,64"
+ orientation="1,0"
+ id="guide4039"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="64,64"
+ orientation="0,1"
+ id="guide3935"
+ inkscape:locked="false"
+ inkscape:label=""
+ inkscape:color="rgb(0,0,255)" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer25"
+ inkscape:label="Content"
+ transform="translate(0,108)">
+ <path
+ sodipodi:type="star"
+ style="display:inline;opacity:1;fill:#cd664d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:normal"
+ id="path3868"
+ sodipodi:sides="3"
+ sodipodi:cx="63.999996"
+ sodipodi:cy="-43.999996"
+ sodipodi:r1="64.000008"
+ sodipodi:r2="32.000004"
+ sodipodi:arg1="0"
+ sodipodi:arg2="1.0471976"
+ inkscape:flatsided="true"
+ inkscape:rounded="0"
+ inkscape:randomized="0"
+ d="m 128,-43.999996 -96.000008,55.425632 0,-110.851265 z"
+ inkscape:transform-center-x="-15.999997"
+ inkscape:transform-center-y="3.8146973e-006" />
+ </g>
+</svg>
diff --git a/src/stylesheets/Paper/Automata/shortcut.svg b/src/stylesheets/Paper/Automata/shortcut.svg
new file mode 100644
index 00000000..72b918ec
--- /dev/null
+++ b/src/stylesheets/Paper/Automata/shortcut.svg
@@ -0,0 +1,94 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="20"
+ height="20"
+ viewBox="0 0 20 20"
+ version="1.1"
+ id="svg8"
+ inkscape:export-filename="D:\Bethesda Game Modding\Mod Organizer 2\stylesheets\Paper\Dark\dots.png"
+ inkscape:export-xdpi="307.20001"
+ inkscape:export-ydpi="307.20001"
+ inkscape:version="0.92.1 r15371"
+ sodipodi:docname="shortcut.svg">
+ <defs
+ id="defs2" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#505050"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="46.5"
+ inkscape:cx="10"
+ inkscape:cy="10"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer25"
+ showgrid="false"
+ units="px"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-page="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true"
+ inkscape:snap-bbox-edge-midpoints="true"
+ inkscape:snap-bbox-midpoints="true"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:window-width="1920"
+ inkscape:window-height="1027"
+ inkscape:window-x="-8"
+ inkscape:window-y="-8"
+ inkscape:window-maximized="1"
+ inkscape:snap-center="true"
+ inkscape:snap-object-midpoints="true"
+ inkscape:measure-start="18.8975,12.498"
+ inkscape:measure-end="20,12.498"
+ inkscape:snap-intersection-paths="true"
+ inkscape:object-paths="true"
+ inkscape:snap-smooth-nodes="true"
+ inkscape:snap-midpoints="true"
+ inkscape:snap-global="true">
+ <sodipodi:guide
+ position="10,10"
+ orientation="1,0"
+ id="guide4039"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="10,10"
+ orientation="0,1"
+ id="guide3935"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer25"
+ inkscape:label="Content">
+ <path
+ inkscape:connector-curvature="0"
+ style="display:inline;opacity:1;fill:#4d4a41;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:stroke fill markers"
+ d="M 12,1.1035163 V 5.4492195 A 9.7951674,7.8360994 0 0 0 2.2050782,13.285156 9.7951674,7.8360994 0 0 0 6.9863282,20 H 8.201172 A 5.8526129,4.68207 0 0 1 6.1484376,16.4375 5.8526129,4.68207 0 0 1 12,11.757812 v 4.345704 l 8,-7.5 z"
+ id="rect3929" />
+ </g>
+</svg>
diff --git a/src/stylesheets/Paper/Automata/sort.svg b/src/stylesheets/Paper/Automata/sort.svg
new file mode 100644
index 00000000..32c08366
--- /dev/null
+++ b/src/stylesheets/Paper/Automata/sort.svg
@@ -0,0 +1,125 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="20"
+ height="20"
+ viewBox="0 0 20 20"
+ version="1.1"
+ id="svg8"
+ inkscape:export-filename="D:\Bethesda Game Modding\Mod Organizer 2\stylesheets\Paper\Dark\dots.png"
+ inkscape:export-xdpi="307.20001"
+ inkscape:export-ydpi="307.20001"
+ inkscape:version="0.92.1 r15371"
+ sodipodi:docname="sort.svg">
+ <defs
+ id="defs2" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#505050"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="63.914761"
+ inkscape:cx="0.055319431"
+ inkscape:cy="1.8950951"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer25"
+ showgrid="false"
+ units="px"
+ borderlayer="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-page="true"
+ inkscape:snap-bbox="true"
+ inkscape:bbox-nodes="true"
+ inkscape:snap-bbox-edge-midpoints="true"
+ inkscape:snap-bbox-midpoints="true"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:window-width="1920"
+ inkscape:window-height="1027"
+ inkscape:window-x="-8"
+ inkscape:window-y="-8"
+ inkscape:window-maximized="1"
+ inkscape:snap-center="true"
+ inkscape:snap-object-midpoints="true"
+ inkscape:measure-start="18.8975,12.498"
+ inkscape:measure-end="20,12.498"
+ inkscape:snap-intersection-paths="true"
+ inkscape:object-paths="true"
+ inkscape:snap-smooth-nodes="true"
+ inkscape:snap-midpoints="true"
+ inkscape:snap-global="true">
+ <sodipodi:guide
+ position="10,10"
+ orientation="1,0"
+ id="guide4039"
+ inkscape:locked="false" />
+ <sodipodi:guide
+ position="10,10"
+ orientation="0,1"
+ id="guide3935"
+ inkscape:locked="false" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata5">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="layer25"
+ inkscape:label="Content">
+ <g
+ id="g3898"
+ style="fill:#4d4a41;fill-opacity:1">
+ <g
+ id="g3886"
+ style="fill:#4d4a41;fill-opacity:1">
+ <rect
+ y="4"
+ x="13"
+ height="16"
+ width="3"
+ id="rect4003"
+ style="display:inline;opacity:1;fill:#4d4a41;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.40999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:normal" />
+ <path
+ style="display:inline;opacity:1;fill:#4d4a41;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.40999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:normal"
+ d="m 13,0 v 7.9999998 h 7 z"
+ id="path4009"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g3890"
+ style="fill:#4d4a41;fill-opacity:1">
+ <rect
+ style="display:inline;opacity:1;fill:#4d4a41;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.40999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:normal"
+ id="rect3999"
+ width="3"
+ height="16"
+ x="4"
+ y="2.2775268e-008" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4016"
+ d="M 7,20 V 12 H 0 Z"
+ style="display:inline;opacity:1;fill:#4d4a41;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.40999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:120;stroke-opacity:1;paint-order:normal" />
+ </g>
+ </g>
+ </g>
+</svg>