overleaf/services/web/frontend/stylesheets/variables/all.less

942 lines
26 KiB
Text
Raw Normal View History

@import 'colors.less';
//
// Variables
// --------------------------------------------------
@editor-header-logo-background: url(../../../public/img/ol-brand/overleaf-o-white.svg)
center / contain no-repeat;
@editor-loading-logo-padding-top: 115.44%;
@editor-loading-logo-background-url: url(../../../public/img/ol-brand/overleaf-o-grey.svg);
@editor-loading-logo-foreground-url: url(../../../public/img/ol-brand/overleaf-o.svg);
@editor-search-count-color: @neutral-70;
//== Scaffolding
//
// ## Settings for some of the most global styles.
//** Background color for `<body>`.
@body-bg: #fff;
//** Global text color on `<body>`.
@text-color: @content-secondary;
//** Global textual link color.
@link-color: @blue;
@link-active-color: @green-darker;
//** Link hover color set via `darken()` function.
@link-hover-color: @blue-dark;
@link-color-alt: @green-dark;
@link-hover-color-alt: @green-darker;
@hr-border-alt: @gray-lighter;
//== Typography
//
//## Font, line-height, and color for body text, headings, and more.
@font-family-sans-serif: 'Lato', sans-serif;
@font-family-serif: 'Merriweather', serif;
//** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`.
@font-family-monospace: Menlo, Monaco, Consolas, 'Courier New', monospace;
@font-family-base: @font-family-sans-serif;
@font-size-base: 16px;
@font-size-large: ceil((@font-size-base * 1.25)); // ~20px
@font-size-small: ceil((@font-size-base * 0.85)); // ~14px
@font-size-extra-small: ceil((@font-size-base * 0.7)); // ~12px
@font-size-h1: floor((@font-size-base * 2)); // ~32px
@font-size-h2: floor((@font-size-base * 1.6)); // ~25px
@font-size-h3: ceil((@font-size-base * 1.25)); // ~20px
@font-size-h4: ceil((@font-size-base * 1.1)); // ~18px
@font-size-h5: @font-size-base;
@font-size-h6: ceil((@font-size-base * 0.85)); // ~14px
//** Unit-less `line-height` for use in components like buttons.
@line-height-base: 1.5625; // 20/14
//** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
@line-height-computed: floor((@font-size-base * @line-height-base)); // ~20px
//** By default, this inherits from the `<body>`.
@headings-font-family: @font-family-serif;
@headings-font-weight: 500;
@headings-line-height: 1.35;
@headings-color: @content-primary;
//-- Iconography
//
//## Specify custom locations of the include Glyphicons icon font. Useful for those including Bootstrap via Bower.
@icon-font-path: '../fonts/';
@icon-font-name: 'glyphicons-halflings-regular';
@icon-font-svg-id: 'glyphicons_halflingsregular';
//== Components
//
//## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).
@margin-xs: 5px;
@margin-sm: 10px;
@margin-md: 20px;
@margin-lg: 30px;
@margin-xl: 40px;
@margin-xxl: 50px;
@padding-base-vertical: 5px;
@padding-base-horizontal: 16px;
@padding-large-vertical: 10px;
@padding-large-horizontal: 16px;
@padding-small-vertical: 5px;
@padding-small-horizontal: 10px;
@padding-xs-vertical: 1.5px;
@padding-xs-horizontal: 8px;
@padding-xs: 5px;
@padding-sm: 10px;
@padding-md: 20px;
@padding-lg: 30px;
@padding-xl: 40px;
@padding-xxl: 50px;
@line-height-large: 1.33;
@line-height-small: 1.5;
@border-radius-base: 3px;
@border-radius-large: 5px;
@border-radius-small: 2px;
@border-width-base: 3px; // only used by plans and cards
@border-size: 1.5px;
@border-color-base: @neutral-40;
@border-color-disabled: @color-disabled;
//** Horizontal line color.
@hr-border: @neutral-20;
@btn-switch-color: @neutral-70;
@btn-switch-hover-color: darken(@neutral-70, 8%);
//** Global color for active items (e.g., navs or dropdowns).
@component-active-color: #fff;
//** Global background color for active items (e.g., navs or dropdowns).
@component-active-bg: @brand-primary;
//** Width of the `border` for generating carets that indicator dropdowns.
@caret-width-base: 4px;
//** Carets increase slightly in size for larger components.
@caret-width-large: 5px;
//== Tables
//
//## Customizes the `.table` component with basic values, each used across all table variations.
//** Padding for `<th>`s and `<td>`s.
@table-cell-padding: 8px;
//** Padding for cells in `.table-condensed`.
@table-condensed-cell-padding: 5px;
//** Default background color used for all tables.
@table-bg: transparent;
//** Background color used for `.table-striped`.
@table-bg-accent: #f9f9f9;
//** Background color used for `.table-hover`.
@table-bg-hover: #f5f5f5;
@table-bg-active: @table-bg-hover;
//** Border color for table and cell borders.
@table-border-color: @neutral-20;
//== Buttons
//
//## For each of Bootstrap's buttons, define text, background and border color.
@btn-font-weight: 700;
@btn-default-color: #fff;
@btn-default-bg: @neutral-70;
@btn-default-border: transparent;
@btn-primary-color: #fff;
@btn-primary-bg: @green;
@btn-primary-border: transparent;
@btn-info-color: #fff;
@btn-info-bg: @blue;
@btn-info-border: transparent;
@btn-warning-color: #fff;
@btn-warning-bg: @orange;
@btn-warning-border: transparent;
@btn-danger-color: #fff;
@btn-danger-bg: @red;
@btn-danger-border: transparent;
@btn-link-disabled-color: @gray-light;
//== Forms
//
//##
//** `<input>` background color
@input-bg: #fff;
//** `<input disabled>` background color
@input-bg-disabled: @color-disabled;
//** Text color for `<input>`s
@input-color: @neutral-90;
//** `<input>` border color
@input-border: @border-color-base;
//** `<input>` border radius
@input-border-radius: 4px;
//** Border color for inputs on focus
@input-border-focus: @blue-50;
//** Bordersize for inputs
@input-border-size: @border-size;
@input-padding: @padding-sm;
//** Placeholder text color
@input-color-placeholder: @neutral-60;
//** Default `.form-control` height
@input-height-base: @line-height-computed + (@padding-base-vertical * 2) - 1;
//** Large `.form-control` height
@input-height-large: (
ceil(@font-size-large * @line-height-large) + (@padding-large-vertical * 2) +
2
);
//** Small `.form-control` height
@input-height-small: (
floor(@font-size-small * @line-height-small) + (@padding-small-vertical * 2) +
2
);
@legend-color: @gray-dark;
@legend-border-color: #e5e5e5;
//** Background color for textual input addons
@input-group-addon-bg: @gray-lighter;
//** Border color for textual input addons
@input-group-addon-border-color: @input-border;
//== Dropdowns
//
//## Dropdown menu container and contents.
//** Background for the dropdown menu.
@dropdown-bg: #fff;
//** Dropdown menu `border-color`.
@dropdown-border: rgba(0, 0, 0, 0.15);
//** Dropdown menu `border-color` **for IE8**.
@dropdown-fallback-border: #ccc;
//** Divider color for between dropdown items.
@dropdown-divider-bg: #e5e5e5;
//** Dropdown link text color.
@dropdown-link-color: @gray-dark;
//** Hover color for dropdown links.
@dropdown-link-hover-color: #fff;
//** Hover background for dropdown links.
@dropdown-link-hover-bg: @brand-primary;
//** Active dropdown menu item text color.
@dropdown-link-active-color: @component-active-color;
//** Active dropdown menu item background color.
@dropdown-link-active-bg: @component-active-bg;
//** Disabled dropdown menu item background color.
@dropdown-link-disabled-color: @gray-light;
//** Text color for headers within dropdown menus.
@dropdown-header-color: @gray-light;
// Note: Deprecated @dropdown-caret-color as of v3.1.0
@dropdown-caret-color: #000;
//-- Z-index master list
//
// Warning: Avoid customizing these values. They're used for a bird's eye view
// of components dependent on the z-axis and are designed to all work together.
//
// Note: These variables are not generated into the Customizer.
@zindex-navbar: 1000;
@zindex-dropdown: 1000;
@zindex-navbar-fixed: 1030;
@zindex-modal-background: 1040;
@zindex-modal: 1050;
@zindex-popover: 1060;
@zindex-tooltip: 1070;
//== Media queries breakpoints
//
//## Define the breakpoints at which your layout will change, adapting to different screen sizes.
// Extra small screen / phone
// Note: Deprecated @screen-xs and @screen-phone as of v3.0.1
@screen-xs: 480px;
@screen-xs-min: @screen-xs;
@screen-phone: @screen-xs-min;
// Small screen / tablet
// Note: Deprecated @screen-sm and @screen-tablet as of v3.0.1
@screen-sm: 768px;
@screen-sm-min: @screen-sm;
@screen-tablet: @screen-sm-min;
// Medium screen / desktop
// Note: Deprecated @screen-md and @screen-desktop as of v3.0.1
@screen-md: 992px;
@screen-md-min: @screen-md;
@screen-desktop: @screen-md-min;
// Large screen / wide desktop
// Note: Deprecated @screen-lg and @screen-lg-desktop as of v3.0.1
@screen-lg: 1200px;
@screen-lg-min: @screen-lg;
@screen-lg-desktop: @screen-lg-min;
// So media queries don't overlap when required, provide a maximum
@screen-xs-max: (@screen-sm-min - 1);
@screen-sm-max: (@screen-md-min - 1);
@screen-md-max: (@screen-lg-min - 1);
@screen-size-sm-max: 767px;
//== Grid system
//
//## Define your custom responsive grid.
//** Number of columns in the grid.
@grid-columns: 12;
//** Padding between columns. Gets divided in half for the left and right.
@grid-gutter-width: 30px;
// Navbar collapse
//** Point at which the navbar becomes uncollapsed.
@grid-float-breakpoint: @screen-md-min;
//** Point at which the navbar begins collapsing.
@grid-float-breakpoint-max: (@grid-float-breakpoint - 1);
//== Container sizes
//
//## Define the maximum width of `.container` for different screen sizes.
// Small screen / tablet
@container-tablet: ((720px + @grid-gutter-width));
//** For `@screen-sm-min` and up.
@container-sm: @container-tablet;
// Medium screen / desktop
@container-desktop: ((940px + @grid-gutter-width));
//** For `@screen-md-min` and up.
@container-md: @container-desktop;
// Large screen / wide desktop
@container-large-desktop: ((1140px + @grid-gutter-width));
//** For `@screen-lg-min` and up.
@container-lg: @container-large-desktop;
//== Navbar
//
//##
// Basics of a navbar
@navbar-height: 60px;
@navbar-margin-bottom: 0;
@navbar-border-radius: 0;
@navbar-padding-horizontal: floor((@grid-gutter-width / 2));
@navbar-padding-vertical: ((@navbar-height - @line-height-computed) / 2);
@navbar-collapse-max-height: 380px;
@navbar-default-color: #fff;
@navbar-default-bg: @neutral-90;
@navbar-default-border: transparent;
// Navbar links
@navbar-default-link-color: #fff;
@navbar-default-link-border-color: @navbar-default-link-color;
@navbar-default-link-hover-color: @green;
@navbar-default-link-hover-bg: @green;
@navbar-default-link-active-color: #fff;
@navbar-default-link-active-bg: @green;
@navbar-default-link-disabled-color: #ccc;
@navbar-default-link-disabled-bg: transparent;
// Navbar brand label
@navbar-default-brand-color: @navbar-default-link-color;
@navbar-default-brand-hover-color: darken(@navbar-default-brand-color, 10%);
@navbar-default-brand-hover-bg: transparent;
// Navbar toggle
@navbar-default-toggle-hover-bg: @link-hover-color;
@navbar-default-toggle-border-color: @link-color;
//== Navs
//
//##
//=== Shared nav styles
@nav-link-padding: 10px 15px;
@nav-link-hover-bg: @link-color;
@nav-disabled-link-color: @gray-light;
@nav-disabled-link-hover-color: @gray-light;
@nav-open-link-hover-color: #fff;
//== Tabs
@nav-tabs-border-color: #ddd;
@nav-tabs-link-hover-border-color: @link-color;
@nav-tabs-active-link-hover-bg: @body-bg;
@nav-tabs-active-link-hover-color: @gray;
@nav-tabs-active-link-hover-border-color: #ddd;
@nav-tabs-justified-link-border-color: #ddd;
@nav-tabs-justified-active-link-border-color: @body-bg;
//== Pills
@nav-pills-link-color: @btn-default-bg;
@nav-pills-link-hover-color: @nav-link-hover-bg;
@nav-pills-link-hover-bg: darken(@neutral-70, 8%); // match button-variant mixin
@nav-pills-border-radius: @border-radius-base;
@nav-pills-active-link-hover-bg: @green-darker;
@nav-pills-active-link-hover-color: @component-active-color;
//== Pagination
//
//##
@pagination-color: @green-darker;
@pagination-bg: #fff;
@pagination-border: @gray-lighter;
@pagination-hover-color: @green-darker;
@pagination-hover-bg: @gray-lightest;
@pagination-hover-border: @gray-lighter;
@pagination-active-color: #fff;
@pagination-active-bg: @green-darker;
@pagination-active-border: @gray-lighter;
@pagination-disabled-color: @gray-dark;
@pagination-disabled-bg: @gray-lightest;
@pagination-disabled-border: @gray-lighter;
// Plans
@table-hover-bg: @neutral-10;
@plans-non-highlighted: white;
//== Form states and alerts
//
//## Define colors for form feedback states and, by default, alerts.
@state-success-text: @brand-success;
@state-success-bg: lighten(@brand-success, 50%);
@state-success-border: @brand-success;
@state-info-text: @content-secondary;
@state-info-bg: lighten(@brand-info, 47%);
@state-info-border: @content-secondary;
@state-warning-text: @brand-warning;
@state-warning-bg: lighten(@brand-warning, 45%);
@state-warning-border: @brand-warning;
@state-danger-text: @brand-danger;
@state-danger-bg: lighten(@brand-danger, 50%);
@state-danger-border: @brand-danger;
//== Tooltips
//
//##
//** Tooltip max width
@tooltip-max-width: 200px;
//** Tooltip text color
@tooltip-color: #fff;
//** Tooltip background color
@tooltip-bg: #000;
@tooltip-opacity: 0.9;
//** Tooltip arrow width
@tooltip-arrow-width: 5px;
//** Tooltip arrow color
@tooltip-arrow-color: @tooltip-bg;
//== Popovers
//
//##
//** Popover body background color
@popover-bg: #fff;
//** Popover maximum width
@popover-max-width: 276px;
//** Popover border color
@popover-border-color: rgba(0, 0, 0, 0.2);
//** Popover fallback border color
@popover-fallback-border-color: #ccc;
//** Popover title background color
@popover-title-bg: darken(@popover-bg, 3%);
//** Popover arrow width
@popover-arrow-width: 10px;
//** Popover arrow color
@popover-arrow-color: #fff;
//** Popover outer arrow width
@popover-arrow-outer-width: (@popover-arrow-width + 1);
//** Popover outer arrow color
@popover-arrow-outer-color: fadein(@popover-border-color, 5%);
//** Popover outer arrow fallback color
@popover-arrow-outer-fallback-color: darken(
@popover-fallback-border-color,
20%
);
//== Labels
//
//##
//** Default label background color
@label-default-bg: @gray-light;
//** Primary label background color
@label-primary-bg: @brand-primary;
//** Success label background color
@label-success-bg: @brand-success;
//** Info label background color
@label-info-bg: @brand-info;
//** Warning label background color
@label-warning-bg: @brand-warning;
//** Danger label background color
@label-danger-bg: @brand-danger;
//** Default label text color
@label-color: #fff;
//** Default text color of a linked label
@label-link-hover-color: #fff;
//== Modals
//
//##
//** Padding applied to the modal body
@modal-inner-padding: 20px;
//** Padding applied to the modal title
@modal-title-padding: 15px;
//** Modal title line-height
@modal-title-line-height: @line-height-base;
//** Background color of modal content area
@modal-content-bg: #fff;
//** Modal content border color
@modal-content-border-color: rgba(0, 0, 0, 0.2);
//** Modal content border color **for IE8**
@modal-content-fallback-border-color: #999;
//** Modal backdrop background color
@modal-backdrop-bg: #000;
//** Modal backdrop opacity
@modal-backdrop-opacity: 0.5;
//** Modal header border color
@modal-header-border-color: #e5e5e5;
//** Modal footer border color
@modal-footer-border-color: @modal-header-border-color;
@modal-footer-background-color: @gray-lightest;
@modal-lg: 900px;
@modal-md: 600px;
@modal-sm: 300px;
//== Alerts
//
//## Define alert colors, border radius, and padding.
@alert-padding: 15px;
@alert-border-radius: @border-radius-base;
@alert-link-font-weight: bold;
@alert-success-bg: @brand-success;
@alert-success-text: #fff;
@alert-success-border: transparent;
@alert-info-bg: @brand-info;
@alert-info-text: #fff;
@alert-info-border: transparent;
@alert-warning-bg: @brand-warning;
@alert-warning-text: #fff;
@alert-warning-border: transparent;
@alert-danger-bg: @brand-danger;
@alert-danger-text: #fff;
@alert-danger-border: transparent;
@alert-alt-bg: @neutral-20;
@alert-alt-text: @content-secondary;
@alert-alt-border: transparent;
//== Progress bars
//
//##
//** Background color of the whole progress component
@progress-bg: white;
@progress-border-color: @gray-lighter;
//** Progress bar text color
@progress-bar-color: #fff;
//** Default progress bar color
@progress-bar-bg: @neutral-70;
//** Success progress bar color
@progress-bar-success-bg: @green;
//** Warning progress bar color
@progress-bar-warning-bg: @brand-warning;
//** Danger progress bar color
@progress-bar-danger-bg: @red;
//** Info progress bar color
@progress-bar-info-bg: @blue;
//== Thumbnails
//
//##
//** Padding around the thumbnail image
@thumbnail-padding: 4px;
//** Thumbnail background color
@thumbnail-bg: @body-bg;
//** Thumbnail border color
@thumbnail-border: #ddd;
//** Thumbnail border radius
@thumbnail-border-radius: @border-radius-base;
//** Custom text color for thumbnail captions
@thumbnail-caption-color: @text-color;
//** Padding around the thumbnail caption
@thumbnail-caption-padding: 9px;
//== Close
//
//##
@close-font-weight: bold;
@close-color: #000;
@close-text-shadow: 0 1px 0 #fff;
//== Type
//
//##
//** Text muted color
@text-muted: @gray-light;
//** Abbreviations and acronyms border color
@abbr-border-color: @gray-light;
//** Headings small color
@headings-small-color: @gray-light;
//** Blockquote small color
@blockquote-small-color: @neutral-60;
//** Blockquote font size
@blockquote-font-size: (@font-size-base * 1.125);
//** Blockquote border color
@blockquote-border-color: @gray-lighter;
//** Page header border color
@page-header-border-color: @hr-border;
//== Miscellaneous
@editor-search-count-color: @neutral-70;
//##
//** Horizontal offset for forms and lists.
@component-offset-horizontal: 180px;
@content-margin-vertical: @line-height-computed;
@left-menu-width: 260px;
@left-menu-animation-duration: 0.35s;
@toolbar-border-color: @neutral-80;
@toolbar-header-btn-border-color: @toolbar-border-color;
@toolbar-btn-height: 26px;
@common-border-color: @gray-lighter;
@editor-border-color: @neutral-80;
@editor-dark-background-color: #333;
@editor-dark-toolbar-border-color: #222;
@editor-dark-highlight-color: #ffa03a;
// Custom
@header-height: 68px;
@footer-height: 50px;
// Backgrounds
@content-alt-bg-color: @neutral-10;
// Typography
@text-small-color: @content-secondary;
// Navbar
@navbar-title-color: @neutral-20;
@navbar-title-color-hover: @neutral-40;
@navbar-default-padding-v: (@grid-gutter-width / 2);
@navbar-default-padding-h: 10px;
@navbar-default-padding: @navbar-default-padding-v @navbar-default-padding-h;
@navbar-brand-width: 130px;
@navbar-btn-font-size: @font-size-base;
@navbar-btn-border-radius: @btn-border-radius-base;
@navbar-btn-font-weight: 400;
@navbar-btn-padding: (@padding-base-vertical - 1) @padding-base-horizontal
@padding-base-vertical;
@navbar-btn-line-height: @line-height-base;
@navbar-subdued-padding: (@padding-base-vertical + 1)
(@padding-base-horizontal + 1) (@padding-base-vertical + 2);
@navbar-subdued-color: #fff;
@navbar-subdued-hover-bg: #fff;
@navbar-subdued-hover-color: @green;
@navbar-brand-image-url: url(../../../public/img/ol-brand/overleaf-white.svg);
@dropdown-divider-margin: 6px;
@dropdown-item-padding: 4px 20px;
@navbar-default-link-bg: transparent;
// Button colors and sizing
@btn-border-radius-large: 9999px;
@btn-border-radius-base: 9999px;
@btn-border-radius-small: 9999px;
@btn-border-width: 0;
@btn-border-bottom-width: 0;
@btn-primary-hover-bg-color: @green-dark;
@btn-secondary-hover-bg-color: @neutral-20;
// Cards
@card-box-shadow: none;
// Project table
@structured-list-link-color: @blue;
@structured-header-border-color: shade(@neutral-20, 5%);
@structured-list-border-color: @neutral-20;
@structured-list-hover-color: lighten(@neutral-20, 5%);
@structured-list-line-height: 2.5;
// Sidebar
@sidebar-bg: @neutral-80;
@sidebar-color: @neutral-40;
@sidebar-link-color: #fff;
@sidebar-active-border-radius: 0;
@sidebar-active-bg: @neutral-90;
@sidebar-active-color: #fff;
@sidebar-active-font-weight: 700;
@sidebar-hover-bg: @neutral-70;
@sidebar-hover-text-decoration: none;
@v2-dash-pane-bg: @neutral-70;
@v2-dash-pane-link-color: #fff;
@v2-dash-pane-color: #fff;
@v2-dash-pane-subdued-color: @neutral-20;
@v2-dash-pane-toggle-color: #fff;
@v2-dash-pane-btn-bg: @neutral-80;
@v2-dash-pane-btn-hover-bg: @neutral-90;
@folders-menu-margin: 0 - (@grid-gutter-width / 2);
@folders-menu-line-height: @structured-list-line-height;
@folders-menu-item-v-padding: (@line-height-computed / 4);
@folders-menu-item-h-padding: (@grid-gutter-width / 2);
@folders-title-padding: @folders-menu-item-v-padding 0;
@folders-title-margin-top: 0;
@folders-title-margin-bottom: 0;
@folders-title-font-size: @font-size-small;
@folders-title-font-weight: normal;
@folders-title-line-height: @headings-line-height;
@folders-title-color: @neutral-40;
@folders-title-text-transform: uppercase;
@folders-tag-padding: @folders-menu-item-v-padding 30px
@folders-menu-item-v-padding @folders-menu-item-h-padding;
@folders-tag-line-height: 1.4;
@folders-tag-display: block;
@folders-tag-menu-color: #fff;
@folders-tag-hover: @sidebar-hover-bg;
@folders-tag-border-color: @folders-tag-menu-color;
@folders-tag-menu-active-hover: rgba(0, 0, 0, 0.1);
@folders-tag-menu-hover: rgba(0, 0, 0, 0.1);
@info-badge-bg: @blue;
// Progress bars
@progress-border-radius: @line-height-computed;
@progress-border-width: 0;
@progress-bar-shadow: none;
// Footer
@footer-link-color: @link-color-alt;
@footer-link-hover-color: @link-hover-color-alt;
@footer-bg-color: #fff;
@footer-padding: 2em 0;
@fat-footer-social-font-size: 30px;
// Editor header
@ide-body-top-offset: 40px;
@toolbar-header-bg-color: @neutral-90;
@toolbar-header-shadow: none;
@toolbar-header-branded-btn-bg-color: transparent;
@toolbar-btn-color: #fff;
@toolbar-btn-hover-color: #fff;
@toolbar-btn-hover-bg-color: @neutral-80;
@toolbar-btn-hover-text-shadow: none;
@toolbar-btn-active-color: #fff;
@toolbar-btn-active-bg-color: @green;
@toolbar-btn-active-shadow: none;
@toolbar-font-size: 13px;
@toolbar-alt-bg-color: @neutral-80;
@toolbar-icon-btn-color: #fff;
@toolbar-icon-btn-hover-color: #fff;
@toolbar-icon-btn-hover-shadow: none;
@toolbar-icon-btn-hover-boxshadow: none;
@toolbar-border-bottom: 1px solid @toolbar-border-color;
@toolbar-small-height: 32px;
@toolbar-tall-height: 58px;
@project-name-color: @neutral-40;
@project-rename-link-color: @neutral-40;
@project-rename-link-color-hover: @neutral-20;
@global-alerts-padding: 7px;
// Editor file-tree
@file-tree-bg: @neutral-70;
@file-tree-line-height: 2.05;
@file-tree-item-color: #fff;
@file-tree-item-focus-color: @file-tree-item-color;
@file-tree-item-selected-color: @file-tree-item-color;
@file-tree-item-toggle-color: @neutral-40;
@file-tree-item-icon-color: @neutral-40;
@file-tree-item-input-color: @neutral-80;
@file-tree-item-folder-color: @neutral-40;
@file-tree-item-hover-bg: @neutral-80;
@file-tree-item-selected-bg: @green;
@file-tree-multiselect-bg: @blue;
@file-tree-multiselect-hover-bg: @blue-dark;
@file-tree-droppable-bg-color: @neutral-40;
@file-tree-error-color: @neutral-20;
// File outline
@outline-v-rhythm: 24px;
@outline-h-rhythm: 24px;
@outline-item-h-padding: @outline-h-rhythm * 0.25;
@outline-line-guide-color: @neutral-60;
@outline-expand-collapse-color: @neutral-40;
@outline-no-items-color: @file-tree-item-color;
@outline-header-hover-bg: @neutral-90;
@outline-highlight-bg: tint(@file-tree-bg, 15%);
@vertical-resizable-resizer-bg: @neutral-80;
@vertical-resizable-resizer-hover-bg: @neutral-90;
// Editor resizers
@editor-resizer-bg-color: @neutral-80;
@editor-resizer-bg-color-dragging: @neutral-80;
@editor-toggler-bg-color: darken(@neutral-40, 15%);
@editor-toggler-hover-bg-color: @green;
@synctex-controls-z-index: 6;
@synctex-controls-padding: 0;
// Editor toolbar
@editor-toolbar-height: 32px;
@editor-toolbar-bg: @neutral-80;
// Toggle switch
@toggle-switch-bg: @neutral-20;
@toggle-switch-highlight-color: @green;
// Formatting buttons
@formatting-btn-color: #fff;
@formatting-btn-bg: @neutral-80;
@formatting-btn-border: @neutral-70;
@formatting-menu-bg: @neutral-80;
// Chat
@chat-bg: @neutral-80;
@chat-instructions-color: @neutral-20;
@chat-message-color: #fff;
@chat-message-date-color: @neutral-40;
@chat-message-name-color: #fff;
@chat-message-box-shadow: none;
@chat-message-border-radius: @border-radius-large;
@chat-message-padding: 5px 10px;
@chat-message-weight: bold;
@chat-new-message-bg: @neutral-70;
@chat-new-message-textarea-bg: @neutral-20;
@chat-new-message-textarea-color: @neutral-90;
@chat-new-message-border-color: @editor-border-color;
// PDF and logs
@pdf-top-offset: @toolbar-small-height;
@pdf-bg: @neutral-20;
@pdfjs-bg: transparent;
@pdf-page-shadow-color: rgba(0, 0, 0, 0.5);
@logs-pane-bg: @neutral-80;
@log-line-no-color: #fff;
@log-hints-color: @neutral-70;
// Tags
@tag-border-radius: 9999px;
@tag-color: @neutral-70;
@tag-bg-color: @neutral-20;
@tag-bg-hover-color: darken(@neutral-20, 5%);
@tag-max-width: 150px;
@tag-top-adjustment: 2px;
@labels-font-size: 85%;
// System messages
@sys-msg-background: @blue;
@sys-msg-color: #fff;
@sys-msg-border: solid 1px lighten(@blue, 10%);
// Portals
@black-alpha-strong: rgba(0, 0, 0, 0.8);
@btn-portal-width: 200px;
// v2 History
@history-base-font-size: @font-size-small;
@history-base-bg: @neutral-20;
@history-entry-label-bg-color: @blue;
@history-entry-pseudo-label-bg-color: @green;
@history-entry-label-color: #fff;
@history-entry-selected-label-bg-color: #fff;
@history-entry-selected-label-color: @blue;
@history-entry-selected-pseudo-label-color: @green;
@history-entry-day-bg: @neutral-20;
@history-entry-day-color: @neutral-60;
@history-entry-selected-bg: @green;
@history-entry-handle-bg: darken(@green, 10%);
@history-entry-handle-height: 8px;
@history-base-color: @neutral-60;
@history-highlight-color: @content-secondary;
@history-toolbar-bg-color: @editor-toolbar-bg;
@history-toolbar-color: #fff;
@history-file-badge-bg: rgba(255, 255, 255, 0.25);
@history-file-badge-color: @file-tree-item-color;
// Input suggestions
@input-suggestion-v-offset: 4px;
// Symbol Palette
@symbol-palette-bg: @neutral-70;
@symbol-palette-color: #fff;
@symbol-palette-header-background: @neutral-80;
@symbol-palette-item-bg: @neutral-80;
@symbol-palette-item-color: #fff;
@symbol-palette-selected-tab-bg: @neutral-70;
@symbol-palette-selected-tab-color: #fff;
@symbol-palette-text-shadow-color: @neutral-90;
// Galileo
@galileo-bg: @neutral-70;
@galileo-color: #fff;
@galileo-header-background: @neutral-80;
@galileo-suggestion-background: @neutral-60;
// Editor fonts
@editor-font-lucida: 'Lucida Console', 'Source Code Pro', monospace;
@editor-font-monaco: Monaco, Menlo, 'Ubuntu Mono', 'Consolas', monospace;
@mobile-action-element-width: 48px;
@mobile-action-element-height: @mobile-action-element-width;