mirror of
https://github.com/facebook/docusaurus.git
synced 2025-04-28 17:57:48 +02:00
63 lines
1.3 KiB
Text
63 lines
1.3 KiB
Text
---
|
|
sidebar_position: 2
|
|
slug: /api/themes/@docusaurus/theme-classic
|
|
---
|
|
|
|
# 📦 theme-classic
|
|
|
|
import APITable from '@site/src/components/APITable';
|
|
|
|
The classic theme for Docusaurus.
|
|
|
|
You can refer to the [theme configuration page](theme-configuration.mdx) for more details on the configuration.
|
|
|
|
```bash npm2yarn
|
|
npm install --save @docusaurus/theme-classic
|
|
```
|
|
|
|
:::tip
|
|
|
|
If you have installed `@docusaurus/preset-classic`, you don't need to install it as a dependency.
|
|
|
|
:::
|
|
|
|
## Configuration {#configuration}
|
|
|
|
Accepted fields:
|
|
|
|
```mdx-code-block
|
|
<APITable>
|
|
```
|
|
|
|
| Option | Type | Default | Description |
|
|
| --- | --- | --- | --- |
|
|
| `customCss` | <code>string[] \| string</code> | `[]` | Stylesheets to be imported globally as [client modules](../../advanced/client.mdx#client-modules). Relative paths are resolved against the site directory. |
|
|
|
|
```mdx-code-block
|
|
</APITable>
|
|
```
|
|
|
|
:::note
|
|
|
|
Most configuration for the theme is done in `themeConfig`, which can be found in [theme configuration](./theme-configuration.mdx).
|
|
|
|
:::
|
|
|
|
### Example configuration {#ex-config}
|
|
|
|
You can configure this theme through preset options or plugin options.
|
|
|
|
:::tip
|
|
|
|
Most Docusaurus users configure this plugin through the preset options.
|
|
|
|
:::
|
|
|
|
```js config-tabs
|
|
// Preset Options: theme
|
|
// Plugin Options: @docusaurus/theme-classic
|
|
|
|
const config = {
|
|
customCss: './src/css/custom.css',
|
|
};
|
|
```
|