mirror of
https://github.com/IgnatZakalinsky/home-works.git
synced 2026-02-01 04:52:07 +00:00
76 lines
1.7 KiB
CSS
76 lines
1.7 KiB
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto',
|
|
'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans',
|
|
'Helvetica Neue', sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
code {
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
|
monospace;
|
|
}
|
|
|
|
[data-theme='1'] {
|
|
--primary: #06c;
|
|
--primary-content: #fff;
|
|
--secondary: #f000b8;
|
|
--secondary-content: #fff;
|
|
--accent: #37cdbe;
|
|
--accent-content: #163835;
|
|
--neutral: #3d4451;
|
|
--neutral-content: #fff;
|
|
--base-100: #fff;
|
|
--base-200: #f2f2f2;
|
|
--base-300: #e5e6e6;
|
|
--base-content: #1f2937;
|
|
}
|
|
|
|
[data-theme='2'] {
|
|
--primary: #661ae6;
|
|
--primary-content: #fff;
|
|
--secondary: #d926aa;
|
|
--secondary-content: #fff;
|
|
--accent: #1fb2a5;
|
|
--accent-content: #fff;
|
|
--neutral: #191d24;
|
|
--neutral-focus: #111318;
|
|
--neutral-content: #a6adbb;
|
|
--base-100: #2a303c;
|
|
--base-200: #242933;
|
|
--base-300: #20252e;
|
|
--base-content: #a6adbb;
|
|
}
|
|
|
|
[data-theme='3'] {
|
|
--primary: #ef9995;
|
|
--primary-content: #282425;
|
|
--secondary: #a4cbb4;
|
|
--secondary-content: #282425;
|
|
--accent: #ebdc99;
|
|
--accent-content: #282425;
|
|
--neutral: #7d7259;
|
|
--neutral-content: #e4d8b4;
|
|
--base-100: #e4d8b4;
|
|
--base-200: #d2c59d;
|
|
--base-300: #c6b386;
|
|
--base-content: #282425;
|
|
--info: #2563eb;
|
|
--success: #16a34a;
|
|
--warning: #d97706;
|
|
--error: #dc2626;
|
|
}
|
|
|
|
html {
|
|
background-color: var(--base-100);
|
|
color: var(--base-content);
|
|
}
|